guild_real_view_must.xml
4.8 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="320dp"
android:layout_height="300dp"
android:layout_gravity="center"
android:background="@drawable/guildnew_circleround">
<TextView
android:id="@+id/guildlogo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginLeft="48dp"
android:layout_marginTop="10dp"
android:text="实名认证"
android:textColor="#393936"
android:textSize="20sp" />
<ImageView
android:id="@+id/cancle_new_real_cc"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_alignParentLeft="true"
android:layout_marginTop="12dp"
android:layout_marginLeft="48dp"
android:layout_marginRight="20dp"
android:background="@drawable/guild_back_sel" />
<TextView
android:id="@+id/guild_top_line"
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_below="@id/guildlogo"
android:layout_marginLeft="10dp"
android:layout_marginTop="4dp"
android:layout_marginRight="10dp"
android:background="#787878" />
<RelativeLayout
android:id="@+id/guild_login_user_layout"
android:layout_width="260dp"
android:layout_height="40dp"
android:layout_below="@id/guild_top_line"
android:layout_centerHorizontal="true"
android:layout_marginTop="8dp"
android:background="@null"
android:focusable="true"
android:focusableInTouchMode="true"
android:orientation="horizontal"
android:padding="2.0dp">
<EditText
android:id="@+id/et_true_name"
android:layout_width="match_parent"
android:layout_height="38.0dp"
android:layout_centerVertical="true"
android:layout_marginLeft="14dp"
android:paddingLeft="2dp"
android:background="@drawable/guild_loginedit"
android:hint="请输入真实姓名"
android:imeOptions="flagNoExtractUi"
android:nextFocusForward="@+id/guild_bindmobile_mess_main"
android:textColor="#3e3e3b"
android:textColorHint="@color/guild_gray_bcbcbc"
android:textSize="15sp" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/layout_inputpass"
android:layout_width="260dp"
android:layout_height="40dp"
android:layout_below="@id/guild_login_user_layout"
android:layout_centerHorizontal="true"
android:layout_marginTop="15dp"
android:background="@null"
android:focusable="true"
android:focusableInTouchMode="true"
android:orientation="horizontal"
android:padding="2.0dp">
<EditText
android:id="@+id/et_verify_number"
android:layout_width="match_parent"
android:layout_height="38.0dp"
android:paddingLeft="2dp"
android:layout_centerVertical="true"
android:layout_marginLeft="14dp"
android:background="@drawable/guild_loginedit"
android:hint="请输入身份证号码"
android:imeOptions="flagNoExtractUi"
android:nextFocusForward="@+id/guild_bindmobile_mess_main"
android:textColor="#3e3e3b"
android:textColorHint="@color/guild_gray_bcbcbc"
android:textSize="15sp" />
</RelativeLayout>
<TextView
android:id="@+id/cc_real_confirm"
android:layout_width="252dp"
android:layout_height="wrap_content"
android:layout_below="@id/layout_inputpass"
android:layout_alignRight="@+id/layout_inputpass"
android:layout_marginLeft="48dp"
android:layout_marginTop="30dp"
android:background="@drawable/circle_corners"
android:gravity="center"
android:padding="4dp"
android:text="确认"
android:textColor="#fff"
android:textSize="20sp" />
</RelativeLayout>
</LinearLayout>