to_certificate_no_fragment.xml
6.3 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
162
163
164
165
166
167
168
169
<?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:background="#ffffff"
android:orientation="vertical">
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#F8F8F8" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="72dp"
android:layout_gravity="center"
android:layout_marginLeft="16dp"
android:layout_marginTop="12dp"
android:layout_marginRight="16dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="12dp"
android:layout_marginTop="8dp"
android:layout_gravity="center"
android:layout_marginRight="12dp"
android:layout_marginBottom="8dp"
android:text="根据2010年8月1日实施的《网络游戏管理暂行办法》,网络游戏用户需使用有效身份证件进行实名注册。为保证流畅游戏体验,享受健康游戏生活,请广大玩家尽快实名注册。"
android:textColor="#F03349"
android:textSize="12sp" />
<View
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:alpha="0.1"
android:background="@drawable/mc_auth_tips_bg" />
</FrameLayout>
<LinearLayout
android:id="@+id/mch_attestation_no"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
android:layout_marginRight="20dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="真实姓名"
android:textColor="@color/color_020202"
android:textSize="16sp" />
<EditText
android:id="@+id/mch_et_toCertificate_name"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@null"
android:hint="请输入您的真实姓名"
android:maxLength="15"
android:maxLines="1"
android:paddingLeft="32dp"
android:singleLine="true"
android:textColor="#969696"
android:textColorHint="#B8B8B8"
android:textSize="15sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#E8E8E8" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="身份证号"
android:textColor="@color/color_020202"
android:textSize="16sp" />
<EditText
android:id="@+id/mch_et_toCertificate_card"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@null"
android:hint="请输入您的身份证号"
android:maxLength="18"
android:maxLines="1"
android:paddingLeft="32dp"
android:singleLine="true"
android:textColor="#969696"
android:textColorHint="#B8B8B8"
android:textSize="15sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#E8E8E8" />
</LinearLayout>
<LinearLayout
android:id="@+id/ll_certificate_wrong"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginTop="10dp"
android:gravity="center_vertical"
android:orientation="horizontal"
android:visibility="invisible">
<ImageView
android:id="@+id/iv_certificate_wrong"
android:layout_width="20dp"
android:layout_height="20dp"
android:src="@drawable/my_img_authentication_prompt3x" />
<TextView
android:id="@+id/text_certificate_wrong"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:background="#00000000"
android:maxLines="1"
android:text="身份证号已经被认证,不可重新认证"
android:textColor="#FF6C7D"
android:textSize="15sp" />
</LinearLayout>
<Button
android:id="@+id/mch_attestation_button"
android:layout_width="match_parent"
android:layout_height="44dp"
android:layout_marginTop="8dp"
android:background="@drawable/mch_cricle_5dp_bg_blue"
android:text="提交"
android:textColor="#ffffff"
android:textSize="18sp" />
</LinearLayout>
</LinearLayout>