ht_dialog_account.xml
6.2 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
style="@style/ht_title_style"
android:layout_height="wrap_content">
<TextView
style="@style/ht_title_text_style"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:text="账号管理" />
<ImageView
android:id="@+id/ht_close_img"
style="@style/ht_close_style"
android:layout_width="18dp"
android:layout_height="18dp" />
</RelativeLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/ht_content_style"
android:scrollbars="none">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/ht_divider"
android:gravity="center"
android:orientation="vertical"
android:dividerPadding="10dp"
android:showDividers="middle">
<LinearLayout
android:layout_width="match_parent"
android:gravity="center_vertical"
android:padding="10dp"
android:layout_height="45dp">
<ImageView
android:layout_width="20dp"
android:layout_margin="2dp"
android:layout_height="20dp"
android:background="@drawable/ht_icon_bindphone" />
<TextView
android:id="@+id/ht_binding_phone_tv"
android:layout_width="wrap_content"
android:text="绑定手机"
android:layout_weight="1"
android:singleLine="true"
style="@style/ht_dialog_text_style_1"
android:paddingLeft="10dp"
android:layout_height="wrap_content" />
<Button
android:id="@+id/ht_binding_phone"
android:layout_width="wrap_content"
android:textColor="@color/ht_white"
android:layout_margin="1dp"
android:minWidth="66dp"
android:textSize="12sp"
android:text="立即绑定"
android:textStyle="normal"
android:background="@drawable/ht_btn_select_grey"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:layout_height="match_parent" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:gravity="center_vertical"
android:padding="10dp"
android:layout_height="45dp">
<ImageView
android:layout_width="20dp"
android:background="@drawable/ht_icon_change_pwd"
android:layout_margin="2dp"
android:layout_height="20dp" />
<TextView
android:layout_width="wrap_content"
android:text="密码管理"
android:layout_weight="1"
style="@style/ht_dialog_text_style_1"
android:paddingLeft="10dp"
android:layout_height="wrap_content" />
<Button
android:id="@+id/ht_change_pwd"
android:layout_width="wrap_content"
android:layout_margin="1dp"
android:textColor="@color/ht_white"
android:minWidth="66dp"
android:textSize="12sp"
android:text="修改密码"
android:background="@drawable/ht_btn_select_grey"
android:textStyle="normal"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:layout_height="match_parent" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:gravity="center_vertical"
android:padding="10dp"
android:visibility="gone"
android:layout_height="45dp">
<ImageView
android:layout_width="21dp"
android:background="@drawable/ht_icon_auth"
android:layout_margin="1dp"
android:layout_height="21dp" />
<TextView
style="@style/ht_dialog_text_style_1"
android:layout_width="wrap_content"
android:text="实名认证"
android:layout_weight="1"
android:paddingLeft="10dp"
android:layout_height="wrap_content" />
<Button
android:id="@+id/ht_user_fcm"
android:layout_width="wrap_content"
android:layout_margin="1dp"
android:textColor="@color/ht_white"
android:textSize="12sp"
android:minWidth="66dp"
android:text="立即认证"
android:background="@drawable/ht_btn_select_grey"
android:textStyle="normal"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:layout_height="match_parent" />
</LinearLayout>
<Button
android:id="@+id/ht_user_logout_btn"
style="@style/ht_button_style"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginTop="20dp"
android:visibility="invisible"
android:layout_marginBottom="10dp"
android:text="切换账户" />
</LinearLayout>
</ScrollView>
</LinearLayout>