1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
3 android:layout_height="fill_parent" android:layout_width="fill_parent" |
|
4 android:orientation="vertical" |
|
5 > |
|
6 <ScrollView android:layout_height="0dip" 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" > |
|
10 <ImageView android:id="@+id/logo" |
|
11 android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
12 android:layout_marginTop="15dp" |
|
13 android:layout_marginBottom="30dp" |
|
14 android:src="@drawable/logo"/> |
|
15 <TextView |
|
16 android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
17 android:text="@string/account_wizard_text1" |
|
18 android:textSize="18sp" |
|
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> |
|
31 </ScrollView> |
|
32 |
|
33 <RelativeLayout |
|
34 android:gravity="right|center_vertical" |
|
35 android:layout_height="wrap_content" |
|
36 android:layout_width="fill_parent" |
|
37 android:background="@drawable/bottombar" > |
|
38 <Button |
|
39 android:id="@+id/next" |
|
40 android:text="@string/Continue" |
|
41 android:minWidth="100dp" |
|
42 android:layout_height="wrap_content" |
|
43 android:layout_width="wrap_content" |
|
44 android:drawableRight="@drawable/button_indicator_next" |
|
45 android:layout_alignParentRight="true" |
|
46 android:layout_centerVertical="true" |
|
47 android:enabled="false" |
|
48 /> |
|
49 </RelativeLayout> |
|
50 |
|
51 </LinearLayout> |
|