author | Da Risk <da_risk@beem-project.com> |
Sat, 02 Mar 2013 15:51:59 +0100 | |
changeset 1025 | 5aa4849e9343 |
parent 1022 | 16040c6df950 |
permissions | -rw-r--r-- |
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"/> |
|
986
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
14 |
<LinearLayout android:id="@+id/account_layout" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
15 |
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:
783
diff
changeset
|
16 |
android:orientation="vertical" > |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
17 |
<TextView |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
18 |
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:
783
diff
changeset
|
19 |
android:text="@string/account_wizard_configure_text_1" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
20 |
android:textSize="18sp" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
21 |
android:paddingBottom="10dip" /> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
22 |
<Button |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
23 |
android:id="@+id/select_account_btn" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
24 |
android:layout_height="wrap_content" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
25 |
android:layout_width="wrap_content" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
26 |
android:text="@string/account_wizard_select_account_btn" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
27 |
android:minWidth="100dp" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
28 |
/> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
29 |
<TextView |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
30 |
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:
783
diff
changeset
|
31 |
android:gravity="center_horizontal" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
32 |
android:text="@string/account_wizard_configure_text_2" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
33 |
android:textSize="18sp" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
34 |
android:paddingBottom="10dip" /> |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
35 |
</LinearLayout> |
703 | 36 |
<TextView |
37 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
986
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
38 |
android:text="@string/account_wizard_configure_text_3" |
703 | 39 |
android:textSize="18sp" |
40 |
android:paddingBottom="10dip" /> |
|
41 |
<TextView |
|
42 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
43 |
android:text="@string/JabberID" style="@style/Label" /> |
|
44 |
<EditText android:id="@+id/account_username" |
|
45 |
android:inputType="textEmailAddress" android:imeOptions="actionNext" |
|
46 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
47 |
android:singleLine="true" |
|
767
74a987c3efb5
Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents:
703
diff
changeset
|
48 |
android:hint="beem@beem-project.com " |
74a987c3efb5
Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents:
703
diff
changeset
|
49 |
android:contentDescription="@string/JabberID"/> |
703 | 50 |
<TextView |
51 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
52 |
android:text="@string/Password" style="@style/Label" /> |
|
53 |
<EditText android:id="@+id/account_password" |
|
54 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
55 |
android:inputType="textPassword" android:imeOptions="actionNext" |
|
767
74a987c3efb5
Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents:
703
diff
changeset
|
56 |
android:password="true" android:singleLine="true" |
74a987c3efb5
Add properties needed for accessibility.
Nolan Darilek <nolan@thewordnerd.info>
parents:
703
diff
changeset
|
57 |
android:contentDescription="@string/Password"/> |
1009
c76a6e4b37cf
Use proxy and/or specific server settings in account wizard
Da Risk <da_risk@beem-project.com>
parents:
996
diff
changeset
|
58 |
<TextView android:id="@+id/settings_warn_label" style="@style/Label" |
986
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
59 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
1009
c76a6e4b37cf
Use proxy and/or specific server settings in account wizard
Da Risk <da_risk@beem-project.com>
parents:
996
diff
changeset
|
60 |
android:text="@string/account_wizard_settings_warn" |
c76a6e4b37cf
Use proxy and/or specific server settings in account wizard
Da Risk <da_risk@beem-project.com>
parents:
996
diff
changeset
|
61 |
android:inputType="textMultiLine|textNoSuggestions" |
c76a6e4b37cf
Use proxy and/or specific server settings in account wizard
Da Risk <da_risk@beem-project.com>
parents:
996
diff
changeset
|
62 |
android:textColor="@color/white" |
c76a6e4b37cf
Use proxy and/or specific server settings in account wizard
Da Risk <da_risk@beem-project.com>
parents:
996
diff
changeset
|
63 |
android:textStyle="normal" |
c76a6e4b37cf
Use proxy and/or specific server settings in account wizard
Da Risk <da_risk@beem-project.com>
parents:
996
diff
changeset
|
64 |
android:visibility="gone" /> |
c76a6e4b37cf
Use proxy and/or specific server settings in account wizard
Da Risk <da_risk@beem-project.com>
parents:
996
diff
changeset
|
65 |
<TextView android:id="@+id/error_label" style="@style/Label" |
c76a6e4b37cf
Use proxy and/or specific server settings in account wizard
Da Risk <da_risk@beem-project.com>
parents:
996
diff
changeset
|
66 |
android:layout_width="fill_parent" android:layout_height="wrap_content" |
c76a6e4b37cf
Use proxy and/or specific server settings in account wizard
Da Risk <da_risk@beem-project.com>
parents:
996
diff
changeset
|
67 |
android:text="@string/account_wizard_connection_failed" |
c76a6e4b37cf
Use proxy and/or specific server settings in account wizard
Da Risk <da_risk@beem-project.com>
parents:
996
diff
changeset
|
68 |
android:inputType="textMultiLine|textNoSuggestions" |
986
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
69 |
android:textColor="@color/red" |
2c85a0f62ab0
Rework the account wizard using fragments.
Da Risk <da_risk@beem-project.com>
parents:
783
diff
changeset
|
70 |
android:visibility="invisible" /> |
703 | 71 |
</LinearLayout> |
72 |
</ScrollView> |
|
699 | 73 |
|
74 |
<RelativeLayout |
|
75 |
android:gravity="right" |
|
76 |
android:layout_height="wrap_content" |
|
77 |
android:layout_width="fill_parent" |
|
78 |
android:background="@drawable/bottombar" > |
|
79 |
||
80 |
<Button |
|
81 |
android:id="@+id/manual_setup" |
|
783
cfc0f43b29b2
internationalized account wizard
Stefan Endrullis <stefan@endrullis.de>
parents:
767
diff
changeset
|
82 |
android:text="@string/AccountConfigureManualConfiguration" |
699 | 83 |
android:minWidth="100dp" |
84 |
android:layout_height="wrap_content" |
|
85 |
android:layout_width="wrap_content" |
|
86 |
android:layout_alignParentLeft="true" |
|
87 |
android:layout_centerVertical="true" |
|
88 |
/> |
|
89 |
||
90 |
<Button |
|
91 |
android:id="@+id/next" |
|
783
cfc0f43b29b2
internationalized account wizard
Stefan Endrullis <stefan@endrullis.de>
parents:
767
diff
changeset
|
92 |
android:text="@string/Continue" |
699 | 93 |
android:minWidth="100dp" |
94 |
android:layout_height="wrap_content" |
|
95 |
android:layout_width="wrap_content" |
|
96 |
android:drawableRight="@drawable/button_indicator_next" |
|
97 |
android:layout_alignParentRight="true" |
|
98 |
android:layout_centerVertical="true" |
|
99 |
android:enabled="false" |
|
100 |
/> |
|
101 |
</RelativeLayout> |
|
102 |
||
703 | 103 |
</LinearLayout> |