client_Hale
2018-12-26 5fcbe52a6a6a9e1dcbda4712b5a6ec0b89e5f73c
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#01000000" >
 
    <RelativeLayout
        android:id="@+id/rl_login"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:layout_marginLeft="20dip"
        android:layout_marginRight="20dip"
        android:background="@drawable/main_bg_login_noquick"
        android:paddingTop="10dip"
        android:paddingBottom="10dip"
        android:paddingLeft="18dip"
        android:paddingRight="18dip"
         >
 
        <RelativeLayout
            android:id="@+id/ll_logo"
            android:layout_width="fill_parent"
            android:layout_height="45dip" 
            android:layout_marginBottom="10dip"
            >
        
            <TextView
                android:id="@+id/tv_logo"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:text="一键注册"
                android:textColor="@color/red"
                android:textSize="20sp" />
          
        </RelativeLayout>
 
        <RelativeLayout
            android:id="@+id/rl_username"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/ll_logo" 
            android:visibility="gone"
            >
 
            <EditText
                android:id="@+id/et_username"
                android:layout_width="fill_parent"
                android:layout_height="40dip"
                android:background="@drawable/ttw_edit_two_bg"
                android:hint="请输入手机号"
                android:textColorHint="#c8c8c8"
                android:textSize="15dip"
                android:textColor="#818181"
                android:paddingLeft="40dip"
                android:paddingRight="85dip"
                android:selectAllOnFocus="true"
                android:singleLine="true" /> 
              <ImageView
                android:id="@+id/iv_phoneuser"
                android:layout_width="wrap_content"
                android:layout_height="40dip"
                android:layout_alignBottom="@id/et_username"
                android:layout_alignTop="@id/et_username"  
                android:layout_alignLeft="@id/et_username" 
                android:paddingLeft="10dip"
                android:paddingRight="10dip"
                android:focusable="true"
                android:scaleType="center"
                android:src="@drawable/main_user"/>
       
            
        </RelativeLayout>
 
        <RelativeLayout
            android:id="@+id/rl_pwd"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/rl_username"
            android:layout_marginBottom="5dip"
            android:layout_marginTop="5dip" >
            
            <EditText
                android:id="@+id/et_normal_account"
                android:visibility="gone"
                android:layout_marginBottom="10dp"
                android:layout_width="fill_parent"
                android:layout_height="40dip"
                android:background="@drawable/ttw_edit_two_bg"
                android:hint="请输入账户(六~十二位字母数字)"
                android:textColorHint="#c8c8c8"
                android:textSize="14sp"
                android:textColor="#818181"
                android:paddingLeft="40dip"
                android:paddingRight="20dip"
                android:selectAllOnFocus="true"
                android:singleLine="true" />
            <ImageView
                android:id="@+id/iv_user"
                android:layout_width="wrap_content"
                android:layout_height="40dip"
                android:layout_alignBottom="@id/et_normal_account"
                android:layout_alignTop="@id/et_normal_account"  
                android:layout_alignLeft="@id/et_normal_account" 
                android:paddingLeft="10dip"
                android:paddingRight="10dip"
                android:focusable="true"
                android:scaleType="center"
                android:src="@drawable/main_user"/>
            <Button
                android:id="@+id/btn_get_identifycode"
                android:layout_width="85dip"
                android:layout_height="40dip"
                android:layout_alignBottom="@id/et_normal_account"
                android:layout_alignRight="@id/et_normal_account"
                android:layout_alignTop="@id/et_normal_account"
                android:focusable="true"
                android:background="@color/gray4"
                android:text="获取验证码"
                android:textSize="14sp"
                android:scaleType="center" />
            <EditText
                android:id="@+id/et_pwd"
                android:layout_below="@id/et_normal_account"
                android:layout_width="fill_parent"
                android:layout_height="40dip"
                android:background="@drawable/ttw_edit_two_bg"
                android:hint="请输入游戏密码"
                android:password="true"
                android:textColorHint="#c8c8c8"
                android:textSize="14sp"
                android:textColor="#818181"
               android:paddingLeft="40dip"
                android:paddingRight="20dip"
                android:selectAllOnFocus="true"
                android:singleLine="true" />
           <ImageView
                android:id="@+id/iv_pwd"
                android:layout_width="wrap_content"
                android:layout_height="40dip"
                android:layout_alignBottom="@id/et_pwd"
                android:layout_alignTop="@id/et_pwd"  
                android:layout_alignLeft="@id/et_pwd" 
                android:paddingLeft="10dip"
                android:paddingRight="10dip"
                android:focusable="true"
                android:scaleType="center"
                android:src="@drawable/main_password"/>
           <ImageView
                android:id="@+id/iv_pwdishow"
                android:layout_width="wrap_content"
                android:layout_height="40dip"
                android:layout_alignBottom="@id/et_pwd"
                android:layout_alignTop="@id/et_pwd"  
                android:layout_alignRight="@id/et_pwd" 
                android:paddingLeft="10dip"
                android:paddingRight="10dip"
                android:focusable="true"
                android:scaleType="center"
                android:src="@drawable/main_eye_close"/>
            <Button
                android:id="@+id/btn_repwd"
                android:layout_width="40dip"
                android:layout_height="wrap_content"
                android:layout_alignBottom="@id/et_pwd"
                android:layout_alignRight="@id/et_pwd"
                android:layout_alignTop="@id/et_pwd"
                android:text="修改"
                android:textSize="12dip"
                android:visibility="gone" />
        </RelativeLayout>
        
        <RelativeLayout
            android:id="@+id/rl_retext"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/rl_pwd"
            android:layout_marginBottom="5dip">   
             <LinearLayout
                android:id="@+id/ll_agreement"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:orientation="horizontal" 
                >
 
                <ImageView
                    android:id="@+id/iv_agree"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@drawable/main_crossout" />
 
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="10dip"
                    android:gravity="center"
                    android:text="我已阅读且同意"
                    android:textColor="@color/black"
                    android:textSize="14dip" />
 
                <TextView
                    android:id="@+id/tv_user_aggrement"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentRight="true"
                    android:gravity="center"
                    android:text="《用户协议》"
                    android:textColor="@color/red1"
                    android:textSize="14dip" />
 
            </LinearLayout>        
                    
            </RelativeLayout>
            
         <LinearLayout 
            android:id="@+id/ll_goregister"
            android:layout_width="match_parent"
            android:layout_height="40dip"
            android:orientation="horizontal"
            android:layout_below="@id/rl_retext">
           <Button
            android:id="@+id/btn_normalregister"
            android:layout_width="0dip"
            android:layout_height="40dip"
            android:layout_weight="1"                    
            android:background="@drawable/ttw_login_in"
            android:text="手机注册"
            android:textColor="@android:color/white"
            android:textSize="16sp" /> 
           <Button
            android:id="@+id/btn_game_in"
            android:layout_width="0dip"
            android:layout_height="40dip"
            android:layout_marginLeft="15dip"
            android:layout_weight="1"           
            android:background="@drawable/main_go_login"
            android:text="完成注册"
            android:textColor="@android:color/white"
            android:textSize="16sp" /> 
           
         </LinearLayout>
       
 
       <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/ll_goregister"
            android:layout_marginBottom="10dip"
            android:layout_marginTop="10dip" >
            
 
            
            
 
            <TextView
                android:id="@+id/tv_cut"
                android:gravity="center"
                android:layout_alignParentRight="true"
                android:layout_width="80dip"
                android:layout_height="20dip"
                android:background="#FFFFFF"
                android:text="已有账号"
                android:textSize="15sp"
                android:textColor="#878787" />
            
        </RelativeLayout>
    </RelativeLayout>
 
</RelativeLayout>