Pu Zhibing
2025-06-25 844fc3910b72130f79480714bcba98106d8f9177
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
    android:orientation="vertical"
    android:background="@color/bg_main"
    android:layout_height="match_parent">
 
    <LinearLayout
        android:id="@+id/ll_change_phone"
        android:layout_width="match_parent"
        android:background="@color/white"
        android:layout_height="50dp"
        android:orientation="horizontal">
 
        <TextView
            android:id="@+id/tv_mine_award"
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            android:gravity="center_vertical"
            android:paddingStart="14dp"
            android:background="@color/white"
            android:paddingEnd="14dp"
            android:text="修改手机号"
            android:textColor="#ff333333"
            android:textSize="14sp"
            />
 
        <include layout="@layout/include_weight_width"/>
 
        <TextView
            android:id="@+id/tv_phone"
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            android:gravity="center_vertical"
            android:paddingStart="14dp"
            android:background="@color/white"
            android:drawablePadding="@dimen/dp_10"
            android:paddingEnd="14dp"
            android:textStyle="bold"
            android:drawableEnd="@mipmap/more_black"
            android:text="139****1234"
            android:textColor="#ff333333"
            android:textSize="14sp"
            />
 
 
    </LinearLayout>
 
 
    <include layout="@layout/include_line_14"/>
 
    <TextView
        android:id="@+id/tv_login_pwd"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:gravity="center_vertical"
        android:paddingStart="14dp"
        android:background="@color/white"
        android:paddingEnd="14dp"
        android:drawableEnd="@mipmap/more_black"
        android:text="登录密码"
        android:textColor="#ff333333"
        android:textSize="14sp"
        />
 
 
<!--    <include layout="@layout/include_line_14"/>-->
 
    <TextView
        android:id="@+id/tv_card_setting"
        android:layout_width="match_parent"
        android:visibility="gone"
        android:layout_height="50dp"
        android:gravity="center_vertical"
        android:paddingStart="14dp"
        android:background="@color/white"
        android:paddingEnd="14dp"
        android:drawableEnd="@mipmap/more_black"
        android:text="银行卡设置"
        android:textColor="#ff333333"
        android:textSize="14sp"
        />
 
 
<!--    <include layout="@layout/include_line_14"/>-->
 
    <TextView
        android:id="@+id/tv_money_pwd"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:gravity="center_vertical"
        android:visibility="gone"
        android:paddingStart="14dp"
        android:background="@color/white"
        android:paddingEnd="14dp"
        android:drawableEnd="@mipmap/more_black"
        android:text="提现密码"
        android:textColor="#ff333333"
        android:textSize="14sp"
        />
 
 
</LinearLayout>