author | Nikita Kozlov <nikita@elyzion.net> |
Sat, 05 Nov 2011 22:27:58 +0100 | |
changeset 921 | 319ce14e4826 |
parent 783 | cfc0f43b29b2 |
permissions | -rwxr-xr-x |
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" > |
5 |
<ScrollView android:layout_height="fill_parent" android:layout_width="fill_parent" |
|
6 |
android:layout_weight="1"> |
|
7 |
<LinearLayout android:layout_height="wrap_content" android:layout_width="fill_parent" |
|
8 |
android:orientation="vertical" > |
|
9 |
<ImageView android:id="@+id/logo" |
|
10 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
11 |
android:layout_marginTop="15dp" |
|
12 |
android:layout_marginBottom="30dp" |
|
13 |
android:src="@drawable/logo"/> |
|
14 |
<TextView |
|
15 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
16 |
android:layout_alignParentTop="true" |
|
17 |
android:text="@string/account_wizard_configure_text" |
|
18 |
android:textSize="18sp" |
|
19 |
android:paddingBottom="10dip" /> |
|
20 |
<TextView |
|
21 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
22 |
android:text="@string/JabberID" style="@style/Label" /> |
|
23 |
<EditText android:id="@+id/account_username" |
|
24 |
android:inputType="textEmailAddress" android:imeOptions="actionNext" |
|
25 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
26 |
android:singleLine="true" |
|
767
74a987c3efb5
Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents:
703
diff
changeset
|
27 |
android:hint="beem@beem-project.com " |
74a987c3efb5
Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents:
703
diff
changeset
|
28 |
android:contentDescription="@string/JabberID"/> |
703 | 29 |
<TextView |
30 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
31 |
android:text="@string/Password" style="@style/Label" /> |
|
32 |
<EditText android:id="@+id/account_password" |
|
33 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
34 |
android:inputType="textPassword" android:imeOptions="actionNext" |
|
767
74a987c3efb5
Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents:
703
diff
changeset
|
35 |
android:password="true" android:singleLine="true" |
74a987c3efb5
Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents:
703
diff
changeset
|
36 |
android:contentDescription="@string/Password"/> |
703 | 37 |
</LinearLayout> |
38 |
</ScrollView> |
|
699 | 39 |
|
40 |
<RelativeLayout |
|
41 |
android:layout_alignParentBottom="true" |
|
42 |
android:gravity="right" |
|
43 |
android:layout_height="wrap_content" |
|
44 |
android:layout_width="fill_parent" |
|
45 |
android:background="@drawable/bottombar" > |
|
46 |
||
47 |
<Button |
|
48 |
android:id="@+id/manual_setup" |
|
783
cfc0f43b29b2
internationalized account wizard
Stefan Endrullis <stefan@endrullis.de>
parents:
767
diff
changeset
|
49 |
android:text="@string/AccountConfigureManualConfiguration" |
699 | 50 |
android:minWidth="100dp" |
51 |
android:layout_height="wrap_content" |
|
52 |
android:layout_width="wrap_content" |
|
53 |
android:layout_alignParentLeft="true" |
|
54 |
android:layout_centerVertical="true" |
|
55 |
/> |
|
56 |
||
57 |
<Button |
|
58 |
android:id="@+id/next" |
|
783
cfc0f43b29b2
internationalized account wizard
Stefan Endrullis <stefan@endrullis.de>
parents:
767
diff
changeset
|
59 |
android:text="@string/Continue" |
699 | 60 |
android:minWidth="100dp" |
61 |
android:layout_height="wrap_content" |
|
62 |
android:layout_width="wrap_content" |
|
63 |
android:drawableRight="@drawable/button_indicator_next" |
|
64 |
android:layout_alignParentRight="true" |
|
65 |
android:layout_centerVertical="true" |
|
66 |
android:enabled="false" |
|
67 |
/> |
|
68 |
</RelativeLayout> |
|
69 |
||
703 | 70 |
</LinearLayout> |