132
|
1 |
<?xml version="1.0" encoding="utf-8"?> |
317
|
2 |
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
3 |
android:layout_width="fill_parent" |
190
|
4 |
android:layout_height="fill_parent"> |
317
|
5 |
<TableRow> |
|
6 |
<TextView android:text="@string/AddCLogin" |
|
7 |
android:gravity="left" android:padding="3dip" |
|
8 |
/> |
|
9 |
<EditText android:id="@+id/addc_login" android:inputType="textEmailAddress" |
318
|
10 |
android:scrollHorizontally="true" android:layout_width="fill_parent" |
|
11 |
android:layout_weight="1" android:layout_margin="3dip" |
317
|
12 |
/> |
|
13 |
</TableRow> |
|
14 |
<TableRow> |
|
15 |
<TextView android:text="@string/AddCAlias" |
|
16 |
android:gravity="left" android:padding="3dip" /> |
|
17 |
<EditText android:id="@+id/addc_alias" android:inputType="text" |
318
|
18 |
android:textSize="16sp" android:layout_width="fill_parent" |
317
|
19 |
android:scrollHorizontally="true" |
318
|
20 |
android:layout_weight="1" android:layout_margin="3dip" |
|
21 |
/> |
317
|
22 |
</TableRow> |
|
23 |
<TableRow> |
|
24 |
<TextView android:text="@string/AddCGroup" |
|
25 |
android:minWidth="70dp" android:gravity="left" android:padding="3dip" |
|
26 |
/> |
|
27 |
<EditText android:id="@+id/addc_group" android:inputType="text" |
318
|
28 |
android:textSize="16sp" android:layout_width="fill_parent" |
317
|
29 |
android:scrollHorizontally="true" |
318
|
30 |
android:layout_weight="1" android:layout_margin="3dip" |
317
|
31 |
/> |
|
32 |
</TableRow> |
190
|
33 |
<Button android:id="@+id/addc_ok" android:layout_width="fill_parent" |
|
34 |
android:layout_height="wrap_content" android:layout_gravity="center_horizontal" |
|
35 |
android:text="@string/AddCOkButton"> |
|
36 |
<requestFocus /> |
|
37 |
</Button> |
317
|
38 |
</TableLayout> |