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"
|
|
19 |
android:paddingBottom="10dip" />
|
|
20 |
<RadioGroup android:id="@+id/configure_group"
|
|
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>
|
699
|
31 |
|
|
32 |
<RelativeLayout
|
|
33 |
android:layout_alignParentBottom="true"
|
703
|
34 |
android:gravity="right|center_vertical"
|
699
|
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="suivant"
|
|
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"
|
703
|
47 |
android:enabled="false"
|
699
|
48 |
/>
|
|
49 |
</RelativeLayout>
|
|
50 |
|
703
|
51 |
</LinearLayout>
|