author | Da Risk <darisk972@gmail.com> |
Tue, 03 Nov 2009 01:49:00 +0100 | |
changeset 489 | 77c573c8217e |
parent 318 | 9fe098c8512f |
child 506 | 8e33a89c21a3 |
permissions | -rw-r--r-- |
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 |
/> |
|
489
77c573c8217e
some improvements about input methods
Da Risk <darisk972@gmail.com>
parents:
318
diff
changeset
|
9 |
<EditText android:id="@+id/addc_login" android:inputType="textEmailAddress" android:imeOptions="actionNext" |
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" /> |
|
489
77c573c8217e
some improvements about input methods
Da Risk <darisk972@gmail.com>
parents:
318
diff
changeset
|
17 |
<EditText android:id="@+id/addc_alias" android:inputType="text" android:imeOptions="actionNext" |
77c573c8217e
some improvements about input methods
Da Risk <darisk972@gmail.com>
parents:
318
diff
changeset
|
18 |
|
318 | 19 |
android:textSize="16sp" android:layout_width="fill_parent" |
317 | 20 |
android:scrollHorizontally="true" |
318 | 21 |
android:layout_weight="1" android:layout_margin="3dip" |
22 |
/> |
|
317 | 23 |
</TableRow> |
24 |
<TableRow> |
|
25 |
<TextView android:text="@string/AddCGroup" |
|
26 |
android:minWidth="70dp" android:gravity="left" android:padding="3dip" |
|
27 |
/> |
|
28 |
<EditText android:id="@+id/addc_group" android:inputType="text" |
|
318 | 29 |
android:textSize="16sp" android:layout_width="fill_parent" |
317 | 30 |
android:scrollHorizontally="true" |
318 | 31 |
android:layout_weight="1" android:layout_margin="3dip" |
317 | 32 |
/> |
33 |
</TableRow> |
|
190 | 34 |
<Button android:id="@+id/addc_ok" android:layout_width="fill_parent" |
35 |
android:layout_height="wrap_content" android:layout_gravity="center_horizontal" |
|
36 |
android:text="@string/AddCOkButton"> |
|
37 |
<requestFocus /> |
|
38 |
</Button> |
|
489
77c573c8217e
some improvements about input methods
Da Risk <darisk972@gmail.com>
parents:
318
diff
changeset
|
39 |
</TableLayout> |