summaryrefslogtreecommitdiffstats
path: root/res/xml
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2012-04-05 11:42:18 -0700
committerJeff Brown <jeffbrown@google.com>2012-04-05 14:41:41 -0700
commite46c5f30caddb10c69eee62fc2f9db3f26f29bb5 (patch)
tree6d98f04c53b22555c4a9b23f7c37e8223e000649 /res/xml
parentc2584bff7783b84dd9ee67f5ae7a38376fa1370f (diff)
downloadpackages_apps_Settings-e46c5f30caddb10c69eee62fc2f9db3f26f29bb5.zip
packages_apps_Settings-e46c5f30caddb10c69eee62fc2f9db3f26f29bb5.tar.gz
packages_apps_Settings-e46c5f30caddb10c69eee62fc2f9db3f26f29bb5.tar.bz2
Add new settings UI to select keyboard layout.
Bug: 6110399 Change-Id: Ib2758bdcdd6b271be402f46c56d41619dc7aecb9
Diffstat (limited to 'res/xml')
-rw-r--r--res/xml/language_settings.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/res/xml/language_settings.xml b/res/xml/language_settings.xml
index fbfb3d7..cfcc341 100644
--- a/res/xml/language_settings.xml
+++ b/res/xml/language_settings.xml
@@ -36,27 +36,34 @@
<PreferenceScreen android:key="current_input_method"
android:title="@string/current_input_method" />
</PreferenceCategory>
+
<PreferenceCategory
android:key="hard_keyboard"
android:title="@string/builtin_keyboard_settings_title"
android:persistent="false">
+ <!-- Additional preference screens are inserted here programmatically
+ with low order values to set the key map of each attached keyboard. -->
+
<CheckBoxPreference
android:key="auto_replace"
android:title="@string/auto_replace"
android:summaryOn="@string/auto_replace_summary"
android:summaryOff="@string/auto_replace_summary"
+ android:order="1000"
android:persistent="false"/>
<CheckBoxPreference
android:key="auto_caps"
android:title="@string/auto_caps"
android:summaryOn="@string/auto_caps_summary"
android:summaryOff="@string/auto_caps_summary"
+ android:order="1001"
android:persistent="false"/>
<CheckBoxPreference
android:key="auto_punctuate"
android:title="@string/auto_punctuate"
android:summaryOn="@string/auto_punctuate_summary"
android:summaryOff="@string/auto_punctuate_summary"
+ android:order="1002"
android:persistent="false"/>
</PreferenceCategory>