1 <?xml version="1.0" encoding="utf-8"?> |
1 <?xml version="1.0" encoding="utf-8"?> |
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
3 android:layout_height="fill_parent" android:layout_width="fill_parent" |
3 android:layout_height="fill_parent" android:layout_width="fill_parent" |
4 > |
4 android:orientation="vertical" > |
5 <TextView android:id="@+id/wizard_account_tv" |
5 <ScrollView android:layout_height="fill_parent" android:layout_width="fill_parent" |
6 android:layout_width="fill_parent" android:layout_height="wrap_content" |
6 android:layout_weight="1"> |
7 android:layout_alignParentTop="true" |
7 <LinearLayout android:layout_height="wrap_content" android:layout_width="fill_parent" |
8 android:text="@string/account_wizard_text1" |
8 android:orientation="vertical" > |
9 android:textSize="18sp" |
9 <ImageView android:id="@+id/logo" |
10 android:paddingBottom="10dip" /> |
10 android:layout_width="fill_parent" android:layout_height="wrap_content" |
11 |
11 android:layout_marginTop="15dp" |
12 <TextView android:id="@+id/label_username" |
12 android:layout_marginBottom="30dp" |
13 android:layout_width="fill_parent" android:layout_height="wrap_content" |
13 android:src="@drawable/logo"/> |
14 android:layout_below="@id/wizard_account_tv" |
14 <TextView |
15 android:text="@string/JabberID" style="@style/Label" /> |
15 android:layout_width="fill_parent" android:layout_height="wrap_content" |
16 <EditText android:id="@+id/account_username" |
16 android:layout_alignParentTop="true" |
17 android:inputType="textEmailAddress" android:imeOptions="actionNext" |
17 android:text="@string/account_wizard_configure_text" |
18 android:layout_width="fill_parent" android:layout_height="wrap_content" |
18 android:textSize="18sp" |
19 android:layout_below="@id/label_username" |
19 android:paddingBottom="10dip" /> |
20 android:singleLine="true" |
20 <TextView |
21 android:hint="beem@beem-project.com "/> |
21 android:layout_width="fill_parent" android:layout_height="wrap_content" |
22 <TextView android:id="@+id/label_password" |
22 android:text="@string/JabberID" style="@style/Label" /> |
23 android:layout_width="fill_parent" android:layout_height="wrap_content" |
23 <EditText android:id="@+id/account_username" |
24 android:layout_below="@id/account_username" |
24 android:inputType="textEmailAddress" android:imeOptions="actionNext" |
25 android:text="@string/Password" style="@style/Label" /> |
25 android:layout_width="fill_parent" android:layout_height="wrap_content" |
26 <EditText android:id="@+id/account_password" |
26 android:singleLine="true" |
27 android:layout_width="fill_parent" android:layout_height="wrap_content" |
27 android:hint="beem@beem-project.com "/> |
28 android:layout_below="@id/label_password" |
28 <TextView |
29 android:inputType="textPassword" android:imeOptions="actionNext" |
29 android:layout_width="fill_parent" android:layout_height="wrap_content" |
30 android:password="true" android:singleLine="true" /> |
30 android:text="@string/Password" style="@style/Label" /> |
|
31 <EditText android:id="@+id/account_password" |
|
32 android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
33 android:inputType="textPassword" android:imeOptions="actionNext" |
|
34 android:password="true" android:singleLine="true" /> |
|
35 </LinearLayout> |
|
36 </ScrollView> |
31 |
37 |
32 <RelativeLayout |
38 <RelativeLayout |
33 android:layout_alignParentBottom="true" |
39 android:layout_alignParentBottom="true" |
34 android:gravity="right" |
40 android:gravity="right" |
35 android:layout_height="wrap_content" |
41 android:layout_height="wrap_content" |