diff options
author | Ben Murdoch <benm@google.com> | 2011-12-06 11:00:46 +0000 |
---|---|---|
committer | Ben Murdoch <benm@google.com> | 2011-12-06 11:00:46 +0000 |
commit | b2c167de261c6c24421a64e3fa612d8d9234123b (patch) | |
tree | ed6606eb56235fd1f1d6c622d1496bf35444d71a /res/layout | |
parent | 0d0245ffd51825f90a9df883667a71e500da03fa (diff) | |
download | packages_apps_Browser-b2c167de261c6c24421a64e3fa612d8d9234123b.zip packages_apps_Browser-b2c167de261c6c24421a64e3fa612d8d9234123b.tar.gz packages_apps_Browser-b2c167de261c6c24421a64e3fa612d8d9234123b.tar.bz2 |
Fix text field next/done action in Autofill editor. Do not merge.
Explicitly add the necessary imeOptions to the Autofill profile editor
text fields.
Bug: 5631859
Change-Id: I33e49fad388358a8f19c599e7e1e785fe951e1a6
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/autofill_settings_fragment.xml | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/res/layout/autofill_settings_fragment.xml b/res/layout/autofill_settings_fragment.xml index 8c90dd7..44bf8f0 100644 --- a/res/layout/autofill_settings_fragment.xml +++ b/res/layout/autofill_settings_fragment.xml @@ -62,7 +62,8 @@ android:layout_margin="2dip" android:textAppearance="?android:attr/textAppearanceMedium" android:inputType="textPersonName|textCapWords" - android:singleLine="true" /> + android:singleLine="true" + android:imeOptions="actionNext" /> </TableRow> <TableRow> <TextView @@ -79,7 +80,8 @@ android:layout_margin="2dip" android:textAppearance="?android:attr/textAppearanceMedium" android:inputType="textCapWords" - android:singleLine="true" /> + android:singleLine="true" + android:imeOptions="actionNext" /> </TableRow> <TableRow> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" @@ -107,7 +109,8 @@ android:layout_margin="2dip" android:textAppearance="?android:attr/textAppearanceMedium" android:inputType="textCapWords" - android:singleLine="true" /> + android:singleLine="true" + android:imeOptions="actionNext" /> </TableRow> <TableRow> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" @@ -135,7 +138,8 @@ android:layout_margin="2dip" android:textAppearance="?android:attr/textAppearanceMedium" android:inputType="textCapWords" - android:singleLine="true" /> + android:singleLine="true" + android:imeOptions="actionNext" /> </TableRow> <TableRow> <TextView @@ -152,7 +156,8 @@ android:layout_margin="2dip" android:inputType="textCapWords" android:textAppearance="?android:attr/textAppearanceMedium" - android:singleLine="true" /> + android:singleLine="true" + android:imeOptions="actionNext" /> </TableRow> <TableRow> <TextView @@ -169,7 +174,8 @@ android:layout_margin="2dip" android:inputType="textCapWords" android:textAppearance="?android:attr/textAppearanceMedium" - android:singleLine="true" /> + android:singleLine="true" + android:imeOptions="actionNext" /> </TableRow> <TableRow> <TextView @@ -186,7 +192,8 @@ android:layout_margin="2dip" android:inputType="textCapCharacters" android:textAppearance="?android:attr/textAppearanceMedium" - android:singleLine="true" /> + android:singleLine="true" + android:imeOptions="actionNext" /> </TableRow> <TableRow> <TextView @@ -203,7 +210,8 @@ android:layout_margin="2dip" android:inputType="textCapWords" android:textAppearance="?android:attr/textAppearanceMedium" - android:singleLine="true" /> + android:singleLine="true" + android:imeOptions="actionNext" /> </TableRow> <TableRow> <TextView @@ -220,7 +228,8 @@ android:layout_margin="2dip" android:textAppearance="?android:attr/textAppearanceMedium" android:singleLine="true" - android:phoneNumber="true" /> + android:phoneNumber="true" + android:imeOptions="actionNext" /> </TableRow> <TableRow> <TextView @@ -237,7 +246,8 @@ android:layout_margin="2dip" android:textAppearance="?android:attr/textAppearanceMedium" android:inputType="textEmailAddress" - android:singleLine="true" /> + android:singleLine="true" + android:imeOptions="actionDone" /> </TableRow> </TableLayout> </LinearLayout> |