window_real.xml
4.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
<?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">
<LinearLayout
android:id="@+id/sum_lin"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/round_rad5_bg"
android:backgroundTint="#f2f3f7"
android:orientation="vertical">
<include layout="@layout/aiqu_navigation"/>
<TextView
android:id="@+id/username"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="15dp"
android:text="根据《网络游戏管理暂行办法》相关规定,游戏用户需要进行实名认证,点击阅读详细《防沉迷条款》。"
android:textColor="#000000" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:layout_marginRight="10dp"
android:background="@drawable/round_rad5_bg"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="40dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:text="真实姓名"
android:textColor="#000000" />
<EditText
android:id="@+id/name_et"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="100dp"
android:background="@null"
android:hint="请输入真实姓名"
android:textColorHint="#666666"
android:textSize="14sp" />
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:layout_alignParentBottom="true"
android:background="#f2f3f7" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="40dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:text="身份证号"
android:textColor="#000000" />
<EditText
android:id="@+id/number_et"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="100dp"
android:background="@null"
android:hint="请输入真实的身份证号"
android:textColorHint="#666666"
android:textSize="14sp" />
</RelativeLayout>
</LinearLayout>
<TextView
android:layout_marginTop="15dp"
android:id="@+id/sumbit"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@drawable/round_rad2_bg"
android:backgroundTint="@color/orange_1"
android:paddingLeft="5dp"
android:paddingTop="2dp"
android:paddingRight="5dp"
android:paddingBottom="2dp"
android:text="提交"
android:gravity="center"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="10dp"
android:textColor="#ffffff" />
</LinearLayout>
</LinearLayout>