wjc
2025-05-07 5d3efa4c93dde0cde474951e5310bb72ebbf4184
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
 
    <RelativeLayout
        android:id="@+id/sll_ll_rl"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dp_47"
        android:background="@color/text_F5F7FA"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">
 
        <TextView
            android:id="@+id/sll_ll_rl_title_tv"
            android:layout_width="wrap_content"
            android:layout_height="@dimen/dp_19"
            android:layout_marginStart="@dimen/dp_16"
            android:layout_marginTop="@dimen/dp_20"
            android:text="@string/set_account"
            android:textColor="@color/text_7C8590"
            android:textSize="@dimen/text_13"
 
            />
 
    </RelativeLayout>
 
</androidx.constraintlayout.widget.ConstraintLayout>