ht_dialog_fcm.xml
5.0 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="45dp"
style="@style/ht_title_style">
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="实 名 认 证"
style="@style/ht_title_text_style" />
<ImageView
android:id="@+id/ht_close_img"
style="@style/ht_close_style"
android:layout_width="18dp"
android:layout_height="18dp" />
<TextView
android:id="@+id/ht_fcm_next_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:gravity="center"
android:layout_centerVertical="true"
android:textSize="12dp"
android:text="暂不认证" />
</RelativeLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_gravity="center"
style="@style/ht_content_style"
android:layout_height="match_parent"
android:orientation="vertical">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp"
android:scrollbars="none">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginBottom="10dp"
android:gravity="center"
android:background="@drawable/ht_edittext_bg"
android:orientation="horizontal"
android:paddingLeft="5dp">
<ImageView
android:layout_width="15dp"
android:layout_height="16dp"
android:layout_margin="9dp"
android:visibility="gone"
android:background="@drawable/ht_ic_account" />
<EditText
android:id="@+id/ht_et_fcm_name"
style="@style/ht_edittext_style"
android:background="@null"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="请输入您的名字" />
</LinearLayout>
<LinearLayout
android:id="@+id/content2"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@drawable/ht_edittext_bg"
android:gravity="center"
android:orientation="horizontal"
android:paddingLeft="5dp">
<ImageView
android:layout_width="20dp"
android:layout_height="16dp"
android:visibility="gone"
android:layout_margin="7dp"
android:background="@drawable/ht_ic_fcm_cardid" />
<EditText
android:id="@+id/ht_et_fcm_number"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@null"
style="@style/ht_edittext_style"
android:digits="0123456789xX"
android:hint="请输入您的身份证号码" />
</LinearLayout>
<Button
android:id="@+id/ht_fcm_confirm"
style="@style/ht_button_style"
android:layout_height="40dp"
android:singleLine="true"
android:layout_width="match_parent"
android:layout_marginTop="15dp"
android:layout_marginBottom="10dp"
android:text="立 即 认 证" />
<TextView
android:id="@+id/ht_fcm_tips_tv"
android:layout_width="match_parent"
android:textColor="#FF0026"
tools:text="按照国家规定要求:所有游戏用户必须完成实名认证才能进行游戏!"
android:textSize="12sp"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/ht_fcm_tips_tv2"
android:layout_width="match_parent"
android:textColor="#0088FF"
android:layout_marginTop="5dp"
tools:text="1.您提交的实名信息仅供上报中宣部验证;\n2.完成认证后,可领取实名游戏礼包!"
android:textSize="12sp"
android:layout_marginBottom="10dp"
android:layout_height="wrap_content" />
</LinearLayout>
</ScrollView>
</LinearLayout>
</LinearLayout>