author | Stefan Endrullis <stefan@endrullis.de> |
Sat, 22 May 2010 10:20:36 +0200 | |
changeset 783 | cfc0f43b29b2 |
parent 767 | 74a987c3efb5 |
permissions | -rw-r--r-- |
699 | 1 |
<?xml version="1.0" encoding="utf-8"?> |
703 | 2 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
699 | 3 |
android:layout_height="fill_parent" android:layout_width="fill_parent" |
703 | 4 |
android:orientation="vertical" |
699 | 5 |
> |
703 | 6 |
<ScrollView 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" > |
|
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" |
|
767
74a987c3efb5
Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents:
703
diff
changeset
|
19 |
android:paddingBottom="10dip" |
74a987c3efb5
Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents:
703
diff
changeset
|
20 |
android:focusable="true" /> |
703 | 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> |
|
699 | 32 |
|
33 |
<RelativeLayout |
|
34 |
android:layout_alignParentBottom="true" |
|
703 | 35 |
android:gravity="right|center_vertical" |
699 | 36 |
android:layout_height="wrap_content" |
37 |
android:layout_width="fill_parent" |
|
38 |
android:background="@drawable/bottombar" > |
|
39 |
<Button |
|
40 |
android:id="@+id/next" |
|
783
cfc0f43b29b2
internationalized account wizard
Stefan Endrullis <stefan@endrullis.de>
parents:
767
diff
changeset
|
41 |
android:text="@string/Continue" |
699 | 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" |
|
703 | 48 |
android:enabled="false" |
699 | 49 |
/> |
50 |
</RelativeLayout> |
|
51 |
||
703 | 52 |
</LinearLayout> |