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