132
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
2 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
190
|
3 |
android:orientation="vertical" android:layout_width="fill_parent"
|
|
4 |
android:layout_height="fill_parent">
|
|
5 |
<LinearLayout
|
|
6 |
android:orientation="horizontal" android:layout_width="fill_parent"
|
|
7 |
android:layout_height="wrap_content">
|
|
8 |
<TextView android:layout_width="wrap_content"
|
|
9 |
android:layout_height="wrap_content" android:text="@string/AddCLogin"
|
|
10 |
android:minWidth="70dp" />
|
|
11 |
|
|
12 |
<EditText android:id="@+id/addc_login" android:layout_width="wrap_content"
|
|
13 |
android:layout_height="wrap_content" android:singleLine="true"
|
|
14 |
android:textSize="16sp" android:autoText="false" android:capitalize="none"
|
|
15 |
android:minWidth="250dp" android:scrollHorizontally="true" />
|
|
16 |
</LinearLayout>
|
132
|
17 |
|
190
|
18 |
<LinearLayout
|
|
19 |
android:orientation="horizontal" android:layout_width="fill_parent"
|
|
20 |
android:layout_height="wrap_content">
|
|
21 |
<TextView android:layout_width="wrap_content"
|
|
22 |
android:layout_height="wrap_content" android:text="@string/AddCAlias"
|
|
23 |
android:minWidth="70dp" />
|
|
24 |
<EditText android:id="@+id/addc_alias" android:layout_width="wrap_content"
|
|
25 |
android:layout_height="wrap_content" android:singleLine="true"
|
|
26 |
android:textSize="16sp" android:autoText="false" android:minWidth="250dp"
|
|
27 |
android:capitalize="none" android:scrollHorizontally="true" />
|
|
28 |
</LinearLayout>
|
|
29 |
<LinearLayout
|
|
30 |
android:orientation="horizontal" android:layout_width="fill_parent"
|
|
31 |
android:layout_height="wrap_content">
|
|
32 |
<TextView android:layout_width="wrap_content"
|
|
33 |
android:layout_height="wrap_content" android:text="@string/AddCGroup"
|
|
34 |
android:minWidth="70dp" />
|
|
35 |
<EditText android:id="@+id/addc_group" android:layout_width="wrap_content"
|
|
36 |
android:layout_height="wrap_content" android:singleLine="true"
|
|
37 |
android:textSize="16sp" android:autoText="false" android:minWidth="250dp"
|
|
38 |
android:capitalize="none" android:scrollHorizontally="true" />
|
|
39 |
</LinearLayout>
|
|
40 |
<Button android:id="@+id/addc_ok" android:layout_width="fill_parent"
|
|
41 |
android:layout_height="wrap_content" android:layout_gravity="center_horizontal"
|
|
42 |
android:text="@string/AddCOkButton">
|
|
43 |
<requestFocus />
|
|
44 |
</Button>
|
132
|
45 |
</LinearLayout> |