kl_activity_visitor.xml
6.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
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
170
171
172
173
174
175
176
177
178
179
180
<?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:gravity="center"
android:orientation="vertical">
<LinearLayout
android:id="@+id/kl_main_view"
android:layout_width="330dp"
android:layout_height="wrap_content"
android:minHeight="250dp"
android:background="@drawable/klbgshape"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="35dp"
android:background="@drawable/klshape_bule_top"
android:orientation="horizontal">
<TextView
android:id="@+id/kl_title_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="游客注册"
android:textColor="@color/klfont_white"
android:textSize="17sp" />
</RelativeLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:layout_gravity="center_horizontal"
android:gravity="center_vertical"
android:orientation="vertical">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<View
android:layout_width="3dp"
android:layout_height="13dp"
android:background="@drawable/klorange_btn_style" />
<TextView
android:id="@+id/kl_account_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:text="账号:"
android:textColor="@color/color_333333"
android:textSize="14sp" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:gravity="center_vertical"
android:orientation="horizontal">
<View
android:layout_width="3dp"
android:layout_height="13dp"
android:background="@drawable/klorange_btn_style" />
<TextView
android:id="@+id/kl_password_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:text="密码:"
android:textColor="@color/color_333333"
android:textSize="14sp" />
</LinearLayout>
</LinearLayout>
<!--<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="5dp"
android:text="避免账号密码丢失,建议截图保存,尽快修改密码及绑定手机"
android:textColor="@color/klfont_red"
android:textSize="10sp" />-->
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:layout_marginLeft="22dp"
android:layout_marginTop="10dp"
android:layout_marginRight="22dp"
android:background="@color/color_eeeeee" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginLeft="22dp"
android:layout_marginTop="5dp"
android:layout_marginRight="22dp"
android:orientation="horizontal">
<CheckBox
android:id="@+id/kl_accept_cb"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:button="@drawable/klcheckbox_register"
android:paddingRight="7dp"
android:checked="false"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="我已阅读并同意 "
android:textColor="@color/color_333333"
android:textSize="10sp" />
<TextView
android:id="@+id/kl_agreement_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="用户隐私协议政策"
android:textColor="@color/other_skin"
android:textSize="10sp" />
</LinearLayout>
<TextView
android:id="@+id/kl_login"
android:layout_width="match_parent"
android:layout_height="32dp"
android:layout_gravity="center"
android:layout_marginLeft="22dp"
android:layout_marginTop="5dp"
android:layout_marginRight="22dp"
android:background="@drawable/klorange_btn_style"
android:gravity="center"
android:text="进入游戏"
android:textColor="@color/klfont_white"
android:textSize="14sp" />
<TextView
android:id="@+id/kl_bind_phone"
android:layout_width="match_parent"
android:layout_height="32dp"
android:layout_gravity="center"
android:layout_marginLeft="22dp"
android:layout_marginTop="10dp"
android:layout_marginRight="22dp"
android:background="@drawable/klorange_btn_style"
android:gravity="center"
android:text="绑定手机"
android:textColor="@color/klfont_white"
android:textSize="14sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="22dp"
android:layout_marginTop="7dp"
android:layout_marginRight="22dp"
android:text="绑定手机可通过手机号码登录以及找回密码,为了您的账号安全,请尽快绑定手机"
android:textColor="@color/color_666666"
android:textSize="9sp" />
</LinearLayout>
</LinearLayout>