diff options
author | David Pettersson <david2.pettersson@sonyericsson.com> | 2010-09-29 09:47:00 +0200 |
---|---|---|
committer | Johan Redestig <johan.redestig@sonyericsson.com> | 2010-09-29 09:47:00 +0200 |
commit | 4c8c96a4f5caff1178390a245a92142784ffb2ec (patch) | |
tree | 282b93fa6588821c8b13e6941c98e8f5a46e82c5 | |
parent | 3f1ba01d552f03faeb1aa9796dce8d9bf66d8e13 (diff) | |
download | packages_apps_Settings-4c8c96a4f5caff1178390a245a92142784ffb2ec.tar.gz packages_apps_Settings-4c8c96a4f5caff1178390a245a92142784ffb2ec.tar.bz2 packages_apps_Settings-4c8c96a4f5caff1178390a245a92142784ffb2ec.zip |
Changed the text input type of APN name to plain text
Changed the input type of the APN name text field
from email adress to plain text to facilitate the
input method choosing input after locale and not
restricting the input to latin characters. There is
no reason to restrict the APN name to latin
characters only.
Change-Id: Ib85fa980407a67112fd91e744b0dc0632d5c907e
-rw-r--r-- | res/xml/apn_editor.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/res/xml/apn_editor.xml b/res/xml/apn_editor.xml index 3835a2c06..68a1b318e 100644 --- a/res/xml/apn_editor.xml +++ b/res/xml/apn_editor.xml @@ -22,7 +22,7 @@ android:dialogTitle="@string/apn_name" android:key="apn_name" android:singleLine="true" - android:inputType="textEmailAddress" + android:inputType="text" /> <EditTextPreference android:title="@string/apn_apn" |