1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
3 android:orientation="vertical" android:layout_width="fill_parent" |
|
4 android:layout_height="fill_parent"> |
|
5 <LinearLayout android:orientation="horizontal" |
|
6 android:layout_width="fill_parent" android:layout_height="wrap_content"> |
|
7 <TextView android:layout_width="wrap_content" |
|
8 android:layout_height="wrap_content" android:text="@string/ACLogin" |
|
9 android:minWidth="70dp" /> |
|
10 |
|
11 <EditText android:id="@+id/ac_login" android:layout_width="wrap_content" |
|
12 android:layout_height="wrap_content" android:singleLine="true" |
|
13 android:textSize="16sp" android:autoText="false" android:capitalize="none" |
|
14 android:minWidth="150dp" android:scrollHorizontally="true" /> |
|
15 </LinearLayout> |
|
16 |
|
17 <LinearLayout android:orientation="horizontal" |
|
18 android:layout_width="fill_parent" android:layout_height="wrap_content"> |
|
19 <TextView android:layout_width="wrap_content" |
|
20 android:layout_height="wrap_content" android:text="@string/ACEmail" |
|
21 android:minWidth="70dp" /> |
|
22 <EditText android:id="@+id/ac_email" android:layout_width="wrap_content" |
|
23 android:layout_height="wrap_content" android:singleLine="true" |
|
24 android:textSize="16sp" android:autoText="false" android:minWidth="250dp" |
|
25 android:capitalize="none" android:scrollHorizontally="true" /> |
|
26 </LinearLayout> |
|
27 <LinearLayout android:orientation="horizontal" |
|
28 android:layout_width="fill_parent" android:layout_height="wrap_content"> |
|
29 <TextView android:layout_width="wrap_content" |
|
30 android:layout_height="wrap_content" android:text="@string/ACPassword" |
|
31 android:minWidth="70dp" /> |
|
32 <EditText android:id="@+id/ac_password" android:layout_width="wrap_content" |
|
33 android:layout_height="wrap_content" android:singleLine="true" |
|
34 android:password="true" android:textSize="16sp" android:autoText="false" |
|
35 android:minWidth="250dp" android:capitalize="none" |
|
36 android:scrollHorizontally="true" /> |
|
37 </LinearLayout> |
|
38 <LinearLayout android:orientation="horizontal" |
|
39 android:layout_width="fill_parent" android:layout_height="wrap_content"> |
|
40 <TextView android:layout_width="wrap_content" |
|
41 android:layout_height="wrap_content" android:text="@string/ACRepeat" |
|
42 android:minWidth="70dp" /> |
|
43 <EditText android:id="@+id/ac_password2" |
|
44 android:layout_width="wrap_content" android:layout_height="wrap_content" |
|
45 android:singleLine="true" android:password="true" android:textSize="16sp" |
|
46 android:autoText="false" android:minWidth="250dp" android:capitalize="none" |
|
47 android:scrollHorizontally="true" /> |
|
48 </LinearLayout> |
|
49 |
|
50 <Button android:id="@+id/ac_ok" android:layout_width="fill_parent" |
|
51 android:layout_gravity="center_horizontal" android:layout_height="wrap_content" |
|
52 android:text="@string/ACOkButton"> |
|
53 <requestFocus /> |
|
54 </Button> |
|
55 </LinearLayout> |
|