p7725_sdk_layout_register.xml
2.14 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
<RelativeLayout 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:background="@drawable/p7725_sdk_box_bg"
android:orientation="vertical" >
<TextView
android:id="@+id/tv_register_title"
style="@style/Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/p7725_sdk_tv_register_title" />
<EditText
android:id="@+id/et_register_input_username"
style="@style/Input"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/p7725_sdk_hint_register_input_username"
android:inputType="text" />
<EditText
android:id="@+id/et_register_input_pass"
style="@style/Input"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/p7725_sdk_hint_register_input_pass"
android:inputType="textPassword" />
<EditText
android:id="@+id/et_register_input_passok"
style="@style/Input"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/p7725_sdk_hint_register_input_passok"
android:inputType="textPassword" />
<EditText
android:id="@+id/et_register_input_email"
style="@style/Input"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/p7725_sdk_hint_register_input_email"
android:inputType="textEmailAddress" />
<Button
android:id="@+id/btn_register"
style="@style/Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/p7725_sdk_btn_register" />
<Button
android:id="@+id/btn_register_back"
style="@style/Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/p7725_sdk_btn_back" />
</RelativeLayout>