|
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
3 android:orientation="vertical" |
|
4 android:layout_width="fill_parent" |
|
5 android:layout_height="fill_parent" |
|
6 > |
|
7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
8 android:orientation="horizontal" |
|
9 android:layout_width="fill_parent" |
|
10 android:layout_height="wrap_content" |
|
11 > |
|
12 <TextView |
|
13 android:layout_width="wrap_content" |
|
14 android:layout_height="wrap_content" |
|
15 android:text="Login:" |
|
16 android:minWidth="70dp" |
|
17 /> |
|
18 |
|
19 <EditText android:id="@+id/login" |
|
20 android:layout_width="wrap_content" |
|
21 android:layout_height="wrap_content" |
|
22 android:singleLine="true" |
|
23 android:textSize="16sp" |
|
24 android:autoText="false" |
|
25 android:capitalize="none" |
|
26 android:minWidth="150dp" |
|
27 android:scrollHorizontally="true"/> |
|
28 </LinearLayout> |
|
29 |
|
30 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
31 android:orientation="horizontal" |
|
32 android:layout_width="fill_parent" |
|
33 android:layout_height="wrap_content" |
|
34 > |
|
35 <TextView |
|
36 android:layout_width="wrap_content" |
|
37 android:layout_height="wrap_content" |
|
38 android:text="Email:" |
|
39 android:minWidth="70dp" |
|
40 /> |
|
41 <EditText android:id="@+id/email" |
|
42 android:layout_width="wrap_content" |
|
43 android:layout_height="wrap_content" |
|
44 android:singleLine="true" |
|
45 android:textSize="16sp" |
|
46 android:autoText="false" |
|
47 android:minWidth="250dp" |
|
48 android:capitalize="none" |
|
49 android:scrollHorizontally="true"/> |
|
50 </LinearLayout> |
|
51 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
52 android:orientation="horizontal" |
|
53 android:layout_width="fill_parent" |
|
54 android:layout_height="wrap_content" |
|
55 > |
|
56 <TextView |
|
57 android:layout_width="wrap_content" |
|
58 android:layout_height="wrap_content" |
|
59 android:text="Password:" |
|
60 android:minWidth="70dp" |
|
61 /> |
|
62 <EditText android:id="@+id/password" |
|
63 android:layout_width="wrap_content" |
|
64 android:layout_height="wrap_content" |
|
65 android:singleLine="true" |
|
66 android:password="true" |
|
67 android:textSize="16sp" |
|
68 android:autoText="false" |
|
69 android:minWidth="250dp" |
|
70 android:capitalize="none" |
|
71 android:scrollHorizontally="true"/> |
|
72 </LinearLayout> |
|
73 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
74 android:orientation="horizontal" |
|
75 android:layout_width="fill_parent" |
|
76 android:layout_height="wrap_content" |
|
77 > |
|
78 <TextView |
|
79 android:layout_width="wrap_content" |
|
80 android:layout_height="wrap_content" |
|
81 android:text="Repeat:" |
|
82 android:minWidth="70dp" |
|
83 /> |
|
84 <EditText android:id="@+id/password2" |
|
85 android:layout_width="wrap_content" |
|
86 android:layout_height="wrap_content" |
|
87 android:singleLine="true" |
|
88 android:password="true" |
|
89 android:textSize="16sp" |
|
90 android:autoText="false" |
|
91 android:minWidth="250dp" |
|
92 android:capitalize="none" |
|
93 android:scrollHorizontally="true"/> |
|
94 </LinearLayout> |
|
95 |
|
96 <Button android:id="@+id/ok" |
|
97 android:layout_width="wrap_content" |
|
98 android:layout_height="wrap_content" |
|
99 android:layout_alignParentRight="true" |
|
100 android:text="OK"> |
|
101 <requestFocus/> |
|
102 </Button> |
|
103 </LinearLayout> |