author | Da Risk <da_risk@beem-project.com> |
Sat, 22 Sep 2012 03:21:58 +0200 | |
changeset 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 |
<RelativeLayout 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_width="wrap_content" android:layout_height="wrap_content" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
4 |
> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
5 |
<TextView android:id="@+id/title" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
6 |
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
|
7 |
android:layout_alignParentTop="true" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
8 |
android:text="TITLE" /> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
9 |
<View android:id="@+id/separator" android:layout_width="match_parent" android:layout_height="4dp"/> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
10 |
|
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
11 |
<ProgressBar android:id="@+id/progress" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
12 |
android:layout_width="wrap_content" android:layout_height="wrap_content" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
13 |
android:layout_below="@+id/separator" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
14 |
android:layout_alignParentLeft="true" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
15 |
android:indeterminateOnly="true" android:indeterminate="true" android:indeterminateBehavior="repeat"/> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
16 |
<TextView android:id="@+id/message" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
17 |
android:layout_width="wrap_content" android:layout_height="wrap_content" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
18 |
android:layout_below="@+id/separator" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
19 |
android:layout_toRightOf="@id/progress" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
20 |
android:text="TITLECONTENT"/> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
diff
changeset
|
21 |
</RelativeLayout> |