online_application.xml
4.71 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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#e6e6e6">
<com.fish.drp.div.DrpTitleBar
android:id="@+id/online_application_actionbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/disable_button"/>
<EditText
android:id="@+id/edt_account"
android:singleLine="true"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="15dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:hint="用户名 (可以使用您的常用邮箱)"
android:textColorHint="@color/gray"
android:textColor="@color/black"
android:background="@drawable/send_code_button_write"
android:paddingLeft="10dp"/>
<EditText
android:id="@+id/edt_password"
android:singleLine="true"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="15dp"
android:layout_marginLeft="15dp"
android:inputType="textPassword"
android:layout_marginRight="15dp"
android:hint="密码"
android:textColorHint="@color/gray"
android:textColor="@color/black"
android:background="@drawable/send_code_button_write"
android:paddingLeft="10dp"/>
<EditText
android:id="@+id/edt_photo"
android:singleLine="true"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="15dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:hint="手机号"
android:inputType="number"
android:maxLength="11"
android:textColorHint="@color/gray"
android:textColor="@color/black"
android:background="@drawable/send_code_button_write"
android:paddingLeft="10dp"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_marginTop="15dp"
android:orientation="horizontal">
<EditText
android:id="@+id/edt_code"
android:singleLine="true"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="50dp"
android:layout_marginRight="15dp"
android:hint="验证码"
android:inputType="number"
android:maxLength="6"
android:clickable="true"
android:layout_gravity="center_vertical"
android:textColorHint="@color/gray"
android:textColor="@color/black"
android:background="@drawable/send_code_button_write"
android:paddingLeft="10dp"/>
<TextView
android:id="@+id/edt_send_code"
android:clickable="true"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="50dp"
android:gravity="center"
android:layout_gravity="center_vertical"
android:textColorHighlight="@color/light_orange"
android:hint="发送验证码"
android:textColorHint="@color/light_orange"
android:textColor="@color/black"
android:background="@drawable/border_light_orange"
android:paddingLeft="10dp"/>
</LinearLayout>
<EditText
android:id="@+id/edt_email"
android:singleLine="true"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="15dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:hint="邮箱地址(申请结果将通过邮箱发送给您)"
android:textColorHint="@color/gray"
android:textColor="@color/black"
android:textSize="17sp"
android:background="@drawable/send_code_button_write"
android:paddingLeft="10dp"/>
<Button
android:id="@+id/online_application_next"
android:layout_marginTop="30dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="45dp"
android:layout_marginRight="45dp"
android:layout_gravity="center_horizontal"
android:text="下一步"
android:background="@drawable/login_button_disable"/>
</LinearLayout>