The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2008 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
Amith Yamasani | d799347 | 2010-08-18 13:59:28 -0700 | [diff] [blame] | 18 | xmlns:settings="http://schemas.android.com/apk/res/com.android.settings" |
| 19 | android:title="@string/language_keyboard_settings_title"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 20 | |
Jean Chalard | 8ba5c42 | 2011-08-31 21:40:43 +0900 | [diff] [blame] | 21 | <PreferenceScreen |
| 22 | android:fragment="com.android.settings.LocalePicker" |
| 23 | android:key="phone_language" |
| 24 | android:title="@string/phone_language"/> |
Ken Wakasa | d2c3f37 | 2010-09-28 19:01:17 +0900 | [diff] [blame] | 25 | |
Jean Chalard | 8ba5c42 | 2011-08-31 21:40:43 +0900 | [diff] [blame] | 26 | <com.android.settings.inputmethod.SpellCheckersPreference |
| 27 | android:key="spellcheckers_settings" |
| 28 | android:title="@string/spellcheckers_settings_title"/> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 29 | |
Jean Chalard | 8ba5c42 | 2011-08-31 21:40:43 +0900 | [diff] [blame] | 30 | <!-- User dictionary preference title and fragment will be set programmatically. --> |
| 31 | <PreferenceScreen |
Satoshi Kataoka | 5df3307 | 2013-04-30 14:30:12 +0900 | [diff] [blame] | 32 | android:key="key_user_dictionary_settings" |
| 33 | android:title="@string/user_dict_settings_title" /> |
Ken Wakasa | d2c3f37 | 2010-09-28 19:01:17 +0900 | [diff] [blame] | 34 | |
Tadashi G. Takaoka | 74e7c3e | 2014-07-09 16:26:12 +0900 | [diff] [blame^] | 35 | <PreferenceCategory |
| 36 | android:key="keyboard_settings_category" |
satok | 3fa1377 | 2011-06-27 23:44:01 +0900 | [diff] [blame] | 37 | android:title="@string/keyboard_settings_category"> |
Tadashi G. Takaoka | 74e7c3e | 2014-07-09 16:26:12 +0900 | [diff] [blame^] | 38 | <!-- An intent for this preference will be populated programmatically. --> |
| 39 | <PreferenceScreen |
| 40 | android:key="choose_input_methods" |
| 41 | android:title="@string/choose_input_methods" /> |
| 42 | <PreferenceScreen |
| 43 | android:key="current_input_method" |
satok | 3fa1377 | 2011-06-27 23:44:01 +0900 | [diff] [blame] | 44 | android:title="@string/current_input_method" /> |
Tadashi G. Takaoka | 74e7c3e | 2014-07-09 16:26:12 +0900 | [diff] [blame^] | 45 | <!-- Enabled input method list will be populated programmatically here. --> |
satok | 3fa1377 | 2011-06-27 23:44:01 +0900 | [diff] [blame] | 46 | </PreferenceCategory> |
Jeff Brown | e46c5f3 | 2012-04-05 11:42:18 -0700 | [diff] [blame] | 47 | |
satok | 3fa1377 | 2011-06-27 23:44:01 +0900 | [diff] [blame] | 48 | <PreferenceCategory |
| 49 | android:key="hard_keyboard" |
| 50 | android:title="@string/builtin_keyboard_settings_title" |
| 51 | android:persistent="false"> |
Jeff Brown | e46c5f3 | 2012-04-05 11:42:18 -0700 | [diff] [blame] | 52 | <!-- Additional preference screens are inserted here programmatically |
| 53 | with low order values to set the key map of each attached keyboard. --> |
| 54 | |
satok | 3fa1377 | 2011-06-27 23:44:01 +0900 | [diff] [blame] | 55 | <CheckBoxPreference |
| 56 | android:key="auto_replace" |
| 57 | android:title="@string/auto_replace" |
| 58 | android:summaryOn="@string/auto_replace_summary" |
| 59 | android:summaryOff="@string/auto_replace_summary" |
Jeff Brown | e46c5f3 | 2012-04-05 11:42:18 -0700 | [diff] [blame] | 60 | android:order="1000" |
satok | 3fa1377 | 2011-06-27 23:44:01 +0900 | [diff] [blame] | 61 | android:persistent="false"/> |
| 62 | <CheckBoxPreference |
| 63 | android:key="auto_caps" |
| 64 | android:title="@string/auto_caps" |
| 65 | android:summaryOn="@string/auto_caps_summary" |
| 66 | android:summaryOff="@string/auto_caps_summary" |
Jeff Brown | e46c5f3 | 2012-04-05 11:42:18 -0700 | [diff] [blame] | 67 | android:order="1001" |
satok | 3fa1377 | 2011-06-27 23:44:01 +0900 | [diff] [blame] | 68 | android:persistent="false"/> |
| 69 | <CheckBoxPreference |
| 70 | android:key="auto_punctuate" |
| 71 | android:title="@string/auto_punctuate" |
| 72 | android:summaryOn="@string/auto_punctuate_summary" |
| 73 | android:summaryOff="@string/auto_punctuate_summary" |
Jeff Brown | e46c5f3 | 2012-04-05 11:42:18 -0700 | [diff] [blame] | 74 | android:order="1002" |
satok | 3fa1377 | 2011-06-27 23:44:01 +0900 | [diff] [blame] | 75 | android:persistent="false"/> |
| 76 | </PreferenceCategory> |
| 77 | |
Jean Chalard | 8ba5c42 | 2011-08-31 21:40:43 +0900 | [diff] [blame] | 78 | <PreferenceCategory android:key="voice_category" |
| 79 | android:title="@string/voice_category" > |
Amith Yamasani | b44161f | 2010-12-10 13:17:34 -0800 | [diff] [blame] | 80 | |
| 81 | <!-- entries, entryValues, and defaultValue will be populated programmatically. --> |
| 82 | <ListPreference |
Dianne Hackborn | df7e99b | 2014-04-17 18:35:29 -0700 | [diff] [blame] | 83 | android:key="voice_interactor" |
| 84 | android:title="@string/voice_interactor_title" |
| 85 | android:dialogTitle="@string/voice_interactor_title" /> |
| 86 | |
| 87 | <!-- An intent for this preference will be populated programmatically. --> |
| 88 | <PreferenceScreen android:key="voice_interactor_settings" |
| 89 | android:title="@string/voice_interactor_settings_title" /> |
| 90 | |
| 91 | <!-- entries, entryValues, and defaultValue will be populated programmatically. --> |
| 92 | <ListPreference |
Amith Yamasani | b44161f | 2010-12-10 13:17:34 -0800 | [diff] [blame] | 93 | android:key="recognizer" |
| 94 | android:title="@string/recognizer_title" |
| 95 | android:dialogTitle="@string/recognizer_title" /> |
| 96 | |
| 97 | <!-- An intent for this preference will be populated programmatically. --> |
| 98 | <PreferenceScreen android:key="recognizer_settings" |
| 99 | android:title="@string/recognizer_settings_title" /> |
Amith Yamasani | b44161f | 2010-12-10 13:17:34 -0800 | [diff] [blame] | 100 | |
| 101 | <PreferenceScreen android:key="tts_settings" |
Narayan Kamath | 0cfbb0f | 2011-08-18 17:55:41 +0100 | [diff] [blame] | 102 | android:fragment="com.android.settings.tts.TextToSpeechSettings" |
Amith Yamasani | b44161f | 2010-12-10 13:17:34 -0800 | [diff] [blame] | 103 | android:title="@string/tts_settings_title" /> |
| 104 | </PreferenceCategory> |
| 105 | |
Jeff Brown | d82487b | 2011-06-02 03:10:28 -0700 | [diff] [blame] | 106 | <PreferenceCategory android:key="pointer_settings_category" |
| 107 | android:title="@string/pointer_settings_category"> |
| 108 | <com.android.settings.PointerSpeedPreference |
| 109 | android:key="pointer_speed" |
| 110 | android:title="@string/pointer_speed" |
| 111 | android:dialogTitle="@string/pointer_speed" /> |
| 112 | </PreferenceCategory> |
Jeff Brown | f8fb0e5 | 2012-04-13 20:27:45 -0700 | [diff] [blame] | 113 | |
| 114 | <PreferenceCategory android:key="game_controller_settings_category" |
| 115 | android:title="@string/game_controller_settings_category"> |
| 116 | <CheckBoxPreference |
| 117 | android:key="vibrate_input_devices" |
| 118 | android:title="@string/vibrate_input_devices" |
| 119 | android:summaryOn="@string/vibrate_input_devices_summary" |
| 120 | android:summaryOff="@string/vibrate_input_devices_summary" |
| 121 | android:persistent="false"/> |
| 122 | </PreferenceCategory> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 123 | </PreferenceScreen> |