author | Da Risk <da_risk@beem-project.com> |
Sun, 13 Jan 2013 20:36:11 +0100 | |
changeset 1016 | c337d8c387f5 |
parent 986 | 2c85a0f62ab0 |
permissions | -rw-r--r-- |
986
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
1 |
<?xml version="1.0" encoding="utf-8"?> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
2 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
3 |
android:layout_height="fill_parent" android:layout_width="fill_parent" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
4 |
android:orientation="vertical" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
5 |
> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
6 |
<ScrollView android:layout_height="0dip" android:layout_width="fill_parent" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
7 |
android:layout_weight="1"> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
8 |
<LinearLayout android:layout_height="wrap_content" android:layout_width="fill_parent" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
9 |
android:orientation="vertical" > |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
10 |
<ImageView android:id="@+id/logo" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
11 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
12 |
android:layout_marginTop="15dp" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
13 |
android:layout_marginBottom="30dp" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
14 |
android:src="@drawable/logo"/> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
15 |
<TextView |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
16 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
17 |
android:text="@string/account_wizard_text1" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
18 |
android:textSize="18sp" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
19 |
android:paddingBottom="10dip" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
20 |
android:focusable="true" /> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
21 |
<RadioGroup android:id="@+id/configure_group" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
22 |
android:layout_width="fill_parent" android:layout_height="wrap_content" > |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
23 |
<RadioButton android:id="@+id/configure_account" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
24 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
25 |
android:text="@string/account_wizard_configure_account"/> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
26 |
<RadioButton android:id="@+id/create_account" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
27 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
28 |
android:text="@string/account_wizard_create_account"/> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
29 |
</RadioGroup> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
30 |
</LinearLayout> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
31 |
</ScrollView> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
32 |
|
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
33 |
<RelativeLayout |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
34 |
android:gravity="right|center_vertical" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
35 |
android:layout_height="wrap_content" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
36 |
android:layout_width="fill_parent" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
37 |
android:background="@drawable/bottombar" > |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
38 |
<Button |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
39 |
android:id="@+id/next" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
40 |
android:text="@string/Continue" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
41 |
android:minWidth="100dp" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
42 |
android:layout_height="wrap_content" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
43 |
android:layout_width="wrap_content" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
44 |
android:drawableRight="@drawable/button_indicator_next" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
45 |
android:layout_alignParentRight="true" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
46 |
android:layout_centerVertical="true" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
47 |
android:enabled="false" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
48 |
/> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
49 |
</RelativeLayout> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
50 |
|
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
51 |
</LinearLayout> |