1 <?xml version="1.0" encoding="utf-8"?> |
1 <?xml version="1.0" encoding="utf-8"?> |
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
2 <ScrollView 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 android:orientation="vertical" |
5 > |
5 > |
6 <ScrollView android:layout_height="fill_parent" android:layout_width="fill_parent" |
6 <LinearLayout android:layout_height="fill_parent" android:layout_width="fill_parent" |
7 android:layout_weight="1"> |
|
8 <LinearLayout android:layout_height="wrap_content" android:layout_width="fill_parent" |
|
9 android:orientation="vertical" > |
7 android:orientation="vertical" > |
10 <ImageView android:id="@+id/logo" |
8 <ImageView android:id="@+id/logo" |
11 android:layout_width="fill_parent" android:layout_height="wrap_content" |
9 android:layout_width="fill_parent" android:layout_height="wrap_content" |
12 android:layout_marginTop="15dp" |
10 android:layout_marginTop="15dp" |
13 android:layout_marginBottom="30dp" |
11 android:layout_marginBottom="30dp" |
14 android:src="@drawable/logo"/> |
12 android:src="@drawable/logo"/> |
15 <TextView |
13 <FrameLayout |
16 android:layout_width="fill_parent" android:layout_height="wrap_content" |
14 android:layout_width="fill_parent" android:layout_height="fill_parent" |
17 android:text="@string/account_wizard_text1" |
15 android:id="@+id/main_content" /> |
18 android:textSize="18sp" |
16 |
19 android:paddingBottom="10dip" |
|
20 android:focusable="true" /> |
|
21 <RadioGroup android:id="@+id/configure_group" |
|
22 android:layout_width="fill_parent" android:layout_height="wrap_content" > |
|
23 <RadioButton android:id="@+id/configure_account" |
|
24 android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
25 android:text="@string/account_wizard_configure_account"/> |
|
26 <RadioButton android:id="@+id/create_account" |
|
27 android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
28 android:text="@string/account_wizard_create_account"/> |
|
29 </RadioGroup> |
|
30 </LinearLayout> |
17 </LinearLayout> |
31 </ScrollView> |
18 </ScrollView> |
32 |
|
33 <RelativeLayout |
|
34 android:layout_alignParentBottom="true" |
|
35 android:gravity="right|center_vertical" |
|
36 android:layout_height="wrap_content" |
|
37 android:layout_width="fill_parent" |
|
38 android:background="@drawable/bottombar" > |
|
39 <Button |
|
40 android:id="@+id/next" |
|
41 android:text="@string/Continue" |
|
42 android:minWidth="100dp" |
|
43 android:layout_height="wrap_content" |
|
44 android:layout_width="wrap_content" |
|
45 android:drawableRight="@drawable/button_indicator_next" |
|
46 android:layout_alignParentRight="true" |
|
47 android:layout_centerVertical="true" |
|
48 android:enabled="false" |
|
49 /> |
|
50 </RelativeLayout> |
|
51 |
|
52 </LinearLayout> |
|