1 <?xml version="1.0" encoding="utf-8"?> |
1 <?xml version="1.0" encoding="utf-8"?> |
2 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
2 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
3 android:orientation="vertical" |
3 android:orientation="vertical" android:layout_width="fill_parent" |
4 android:layout_width="fill_parent" |
4 android:layout_height="fill_parent"> |
5 android:layout_height="fill_parent"> |
5 <LinearLayout android:layout_width="fill_parent" |
6 <LinearLayout |
6 android:layout_height="fill_parent" android:orientation="vertical" |
7 android:layout_width="fill_parent" |
|
8 android:layout_height="fill_parent" |
|
9 android:orientation="vertical" |
|
10 android:padding="10dip"> |
7 android:padding="10dip"> |
11 <TextView android:id="@+id/create_account_label_username" |
8 <TextView android:id="@+id/create_account_label_username" |
12 android:layout_width="fill_parent" |
9 android:layout_width="fill_parent" android:layout_height="wrap_content" |
13 android:layout_height="wrap_content" |
10 android:text="@string/create_account_username" style="@style/Label" /> |
14 android:text="@string/create_account_username" |
|
15 style="@style/Label" /> |
|
16 <EditText android:id="@+id/create_account_username" |
11 <EditText android:id="@+id/create_account_username" |
17 android:layout_width="fill_parent" |
12 android:layout_width="fill_parent" android:layout_height="wrap_content" |
18 android:layout_height="wrap_content" |
|
19 android:singleLine="true" /> |
13 android:singleLine="true" /> |
20 <TextView android:id="@+id/create_account_label_password" |
14 <TextView android:id="@+id/create_account_label_password" |
21 android:layout_width="fill_parent" |
15 android:layout_width="fill_parent" android:layout_height="wrap_content" |
22 android:layout_height="wrap_content" |
16 android:text="@string/create_account_password" style="@style/Label" /> |
23 android:text="@string/create_account_password" |
|
24 style="@style/Label" /> |
|
25 <EditText android:id="@+id/create_account_password" |
17 <EditText android:id="@+id/create_account_password" |
26 android:layout_width="fill_parent" |
18 android:layout_width="fill_parent" android:layout_height="wrap_content" |
27 android:layout_height="wrap_content" |
19 android:password="true" android:singleLine="true" /> |
28 android:password="true" |
20 <TextView android:id="@+id/create_account_label_confirm_password" |
29 android:singleLine="true" /> |
21 android:layout_width="fill_parent" android:layout_height="wrap_content" |
30 <TextView android:id="@+id/create_account_label_confirm_password" |
22 android:text="@string/create_account_confirm_password" style="@style/Label" /> |
31 android:layout_width="fill_parent" |
|
32 android:layout_height="wrap_content" |
|
33 android:text="@string/create_account_confirm_password" |
|
34 style="@style/Label" /> |
|
35 <EditText android:id="@+id/create_account_confirm_password" |
23 <EditText android:id="@+id/create_account_confirm_password" |
36 android:layout_width="fill_parent" |
24 android:layout_width="fill_parent" android:layout_height="wrap_content" |
37 android:layout_height="wrap_content" |
25 android:password="true" android:singleLine="true" /> |
38 android:password="true" |
26 <View android:layout_height="21dp" android:layout_width="fill_parent" /> |
39 android:singleLine="true" /> |
|
40 <View |
|
41 android:layout_height="21dp" |
|
42 android:layout_width="fill_parent" /> |
|
43 <Button android:id="@+id/create_account_button" |
27 <Button android:id="@+id/create_account_button" |
44 android:layout_width="fill_parent" |
28 android:layout_width="fill_parent" android:layout_height="fill_parent" |
45 android:layout_height="fill_parent" |
|
46 android:text="@string/button_create_account" /> |
29 android:text="@string/button_create_account" /> |
|
30 <Button android:id="@+id/create_account_login_button" |
|
31 android:layout_width="fill_parent" android:layout_height="fill_parent" |
|
32 android:text="@string/button_create_login_account" /> |
47 </LinearLayout> |
33 </LinearLayout> |
48 </ScrollView> |
34 </ScrollView> |