1 <?xml version="1.0" encoding="utf-8"?> |
1 <?xml version="1.0" encoding="utf-8"?> |
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
3 android:layout_height="fill_parent" android:layout_width="fill_parent" |
3 android:layout_height="fill_parent" android:layout_width="fill_parent" |
|
4 android:orientation="vertical" |
4 > |
5 > |
5 <TextView android:id="@+id/wizard_account_tv" |
6 <ScrollView android:layout_height="fill_parent" android:layout_width="fill_parent" |
6 android:layout_width="fill_parent" android:layout_height="wrap_content" |
7 android:layout_weight="1"> |
7 android:layout_alignParentTop="true" |
8 <LinearLayout android:layout_height="wrap_content" android:layout_width="fill_parent" |
8 android:text="@string/account_wizard_text1" |
9 android:orientation="vertical" > |
9 android:textSize="18sp" |
10 <ImageView android:id="@+id/logo" |
10 android:paddingBottom="10dip" /> |
11 android:layout_width="fill_parent" android:layout_height="wrap_content" |
11 <RadioGroup android:layout_width="fill_parent" android:layout_height="wrap_content" |
12 android:layout_marginTop="15dp" |
12 android:layout_below="@id/wizard_account_tv" > |
13 android:layout_marginBottom="30dp" |
13 <RadioButton android:id="@+id/configure_account" |
14 android:src="@drawable/logo"/> |
14 android:layout_width="fill_parent" android:layout_height="wrap_content" |
15 <TextView |
15 android:text="@string/account_wizard_configure_account"/> |
16 android:layout_width="fill_parent" android:layout_height="wrap_content" |
16 <RadioButton android:id="@+id/create_account" |
17 android:text="@string/account_wizard_text1" |
17 android:layout_width="fill_parent" android:layout_height="wrap_content" |
18 android:textSize="18sp" |
18 android:text="@string/account_wizard_create_account"/> |
19 android:paddingBottom="10dip" /> |
19 |
20 <RadioGroup android:id="@+id/configure_group" |
20 </RadioGroup> |
21 android:layout_width="fill_parent" android:layout_height="wrap_content" > |
|
22 <RadioButton android:id="@+id/configure_account" |
|
23 android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
24 android:text="@string/account_wizard_configure_account"/> |
|
25 <RadioButton android:id="@+id/create_account" |
|
26 android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
27 android:text="@string/account_wizard_create_account"/> |
|
28 </RadioGroup> |
|
29 </LinearLayout> |
|
30 </ScrollView> |
21 |
31 |
22 <RelativeLayout |
32 <RelativeLayout |
23 android:layout_alignParentBottom="true" |
33 android:layout_alignParentBottom="true" |
24 android:gravity="right" |
34 android:gravity="right|center_vertical" |
25 android:layout_height="wrap_content" |
35 android:layout_height="wrap_content" |
26 android:layout_width="fill_parent" |
36 android:layout_width="fill_parent" |
27 android:background="@drawable/bottombar" > |
37 android:background="@drawable/bottombar" > |
28 <Button |
38 <Button |
29 android:id="@+id/next" |
39 android:id="@+id/next" |