132
|
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="250dp" |
|
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="Alias:" |
|
39 |
android:minWidth="70dp" |
|
40 |
/> |
|
41 |
<EditText android:id="@+id/alias" |
|
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="Group:" |
|
60 |
android:minWidth="70dp" |
|
61 |
/> |
|
62 |
<EditText android:id="@+id/group" |
|
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 |
<Button android:id="@+id/ok" |
|
74 |
android:layout_width="wrap_content" |
|
75 |
android:layout_height="wrap_content" |
|
76 |
android:layout_alignParentRight="true" |
|
77 |
android:text="OK"> |
|
78 |
<requestFocus/> |
|
79 |
</Button> |
|
80 |
</LinearLayout> |