9 <ImageView android:id="@+id/logo" |
9 <ImageView android:id="@+id/logo" |
10 android:layout_width="fill_parent" android:layout_height="wrap_content" |
10 android:layout_width="fill_parent" android:layout_height="wrap_content" |
11 android:layout_marginTop="15dp" |
11 android:layout_marginTop="15dp" |
12 android:layout_marginBottom="30dp" |
12 android:layout_marginBottom="30dp" |
13 android:src="@drawable/logo"/> |
13 android:src="@drawable/logo"/> |
|
14 <LinearLayout android:id="@+id/account_layout" |
|
15 android:layout_height="wrap_content" android:layout_width="fill_parent" |
|
16 android:orientation="vertical" > |
|
17 <TextView |
|
18 android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
19 android:text="@string/account_wizard_configure_text_1" |
|
20 android:textSize="18sp" |
|
21 android:paddingBottom="10dip" /> |
|
22 <Button |
|
23 android:id="@+id/select_account_btn" |
|
24 android:layout_height="wrap_content" |
|
25 android:layout_width="wrap_content" |
|
26 android:text="@string/account_wizard_select_account_btn" |
|
27 android:minWidth="100dp" |
|
28 /> |
|
29 <TextView |
|
30 android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
31 android:gravity="center_horizontal" |
|
32 android:text="@string/account_wizard_configure_text_2" |
|
33 android:textSize="18sp" |
|
34 android:paddingBottom="10dip" /> |
|
35 </LinearLayout> |
14 <TextView |
36 <TextView |
15 android:layout_width="fill_parent" android:layout_height="wrap_content" |
37 android:layout_width="fill_parent" android:layout_height="wrap_content" |
16 android:layout_alignParentTop="true" |
38 android:text="@string/account_wizard_configure_text_3" |
17 android:text="@string/account_wizard_configure_text" |
|
18 android:textSize="18sp" |
39 android:textSize="18sp" |
19 android:paddingBottom="10dip" /> |
40 android:paddingBottom="10dip" /> |
20 <TextView |
41 <TextView |
21 android:layout_width="fill_parent" android:layout_height="wrap_content" |
42 android:layout_width="fill_parent" android:layout_height="wrap_content" |
22 android:text="@string/JabberID" style="@style/Label" /> |
43 android:text="@string/JabberID" style="@style/Label" /> |
32 <EditText android:id="@+id/account_password" |
53 <EditText android:id="@+id/account_password" |
33 android:layout_width="fill_parent" android:layout_height="wrap_content" |
54 android:layout_width="fill_parent" android:layout_height="wrap_content" |
34 android:inputType="textPassword" android:imeOptions="actionNext" |
55 android:inputType="textPassword" android:imeOptions="actionNext" |
35 android:password="true" android:singleLine="true" |
56 android:password="true" android:singleLine="true" |
36 android:contentDescription="@string/Password"/> |
57 android:contentDescription="@string/Password"/> |
|
58 <TextView android:id="@+id/error_label" |
|
59 android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
60 android:text="@string/account_wizard_connection_failed" style="@style/Label" |
|
61 android:textColor="@color/red" |
|
62 android:visibility="invisible" /> |
37 </LinearLayout> |
63 </LinearLayout> |
38 </ScrollView> |
64 </ScrollView> |
39 |
65 |
40 <RelativeLayout |
66 <RelativeLayout |
41 android:layout_alignParentBottom="true" |
67 android:layout_alignParentBottom="true" |