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 |
Mihai Nita | d7d48fd | 2016-01-12 08:55:05 -0800 | [diff] [blame] | 7 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Mihai Nita | d7d48fd | 2016-01-12 08:55:05 -0800 | [diff] [blame] | 9 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 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" |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 18 | xmlns:settings="http://schemas.android.com/apk/res/com.android.settings" |
| 19 | android:key="language_keyboard_settings" |
Amith Yamasani | d799347 | 2010-08-18 13:59:28 -0700 | [diff] [blame] | 20 | android:title="@string/language_keyboard_settings_title"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 21 | |
Jean Chalard | 8ba5c42 | 2011-08-31 21:40:43 +0900 | [diff] [blame] | 22 | <PreferenceScreen |
Jean Chalard | 8ba5c42 | 2011-08-31 21:40:43 +0900 | [diff] [blame] | 23 | android:key="phone_language" |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 24 | android:title="@string/phone_language" |
Mihai Nita | d7d48fd | 2016-01-12 08:55:05 -0800 | [diff] [blame] | 25 | android:fragment="com.android.settings.localepicker.LocaleListEditor" |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 26 | /> |
Ken Wakasa | d2c3f37 | 2010-09-28 19:01:17 +0900 | [diff] [blame] | 27 | |
Tadashi G. Takaoka | cd6fdea | 2014-07-10 15:37:28 +0900 | [diff] [blame] | 28 | <!-- Spell checker preference title, summary and fragment will be set programmatically. --> |
| 29 | <!-- Note: Mark this as persistent="false" to remove unnecessarily saved shared preference. |
| 30 | See: InputMethodAndSubtypeUtil.removeUnnecessaryNonPersistentPreference. --> |
| 31 | <PreferenceScreen |
Jean Chalard | 8ba5c42 | 2011-08-31 21:40:43 +0900 | [diff] [blame] | 32 | android:key="spellcheckers_settings" |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 33 | android:title="@string/spellcheckers_settings_title" |
Tadashi G. Takaoka | cd6fdea | 2014-07-10 15:37:28 +0900 | [diff] [blame] | 34 | android:persistent="false" |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 35 | /> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 36 | |
Jean Chalard | 8ba5c42 | 2011-08-31 21:40:43 +0900 | [diff] [blame] | 37 | <!-- User dictionary preference title and fragment will be set programmatically. --> |
| 38 | <PreferenceScreen |
Satoshi Kataoka | 5df3307 | 2013-04-30 14:30:12 +0900 | [diff] [blame] | 39 | android:key="key_user_dictionary_settings" |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 40 | android:title="@string/user_dict_settings_title" |
| 41 | /> |
Ken Wakasa | d2c3f37 | 2010-09-28 19:01:17 +0900 | [diff] [blame] | 42 | |
Tadashi G. Takaoka | 74e7c3e | 2014-07-09 16:26:12 +0900 | [diff] [blame] | 43 | <PreferenceCategory |
Abodunrinwa Toki | 976bb3f | 2016-01-20 18:43:20 +0000 | [diff] [blame] | 44 | android:title="@string/keyboard_and_input_methods_category"> |
Tadashi G. Takaoka | 74e7c3e | 2014-07-09 16:26:12 +0900 | [diff] [blame] | 45 | <PreferenceScreen |
Abodunrinwa Toki | 976bb3f | 2016-01-20 18:43:20 +0000 | [diff] [blame] | 46 | android:title="@string/virtual_keyboard_category" |
| 47 | android:fragment="com.android.settings.inputmethod.VirtualKeyboardFragment" /> |
| 48 | <PreferenceScreen |
Yorke Lee | d448522 | 2016-03-23 11:11:46 -0700 | [diff] [blame^] | 49 | android:title="@string/physical_keyboard_title" |
Abodunrinwa Toki | 976bb3f | 2016-01-20 18:43:20 +0000 | [diff] [blame] | 50 | android:fragment="com.android.settings.inputmethod.PhysicalKeyboardFragment" /> |
satok | 3fa1377 | 2011-06-27 23:44:01 +0900 | [diff] [blame] | 51 | </PreferenceCategory> |
Jeff Brown | e46c5f3 | 2012-04-05 11:42:18 -0700 | [diff] [blame] | 52 | |
Abodunrinwa Toki | 976bb3f | 2016-01-20 18:43:20 +0000 | [diff] [blame] | 53 | <!-- Temporarily disabled: --> |
| 54 | <!--<PreferenceCategory--> |
| 55 | <!--android:key="keyboard_settings_category"--> |
| 56 | <!--android:title="@string/keyboard_settings_category">--> |
| 57 | |
| 58 | <!--<PreferenceScreen--> |
| 59 | <!--android:key="current_input_method"--> |
| 60 | <!--android:title="@string/current_input_method"--> |
| 61 | <!--/>--> |
| 62 | <!--<!– Enabled input method list will be populated programmatically here. –>--> |
| 63 | <!--</PreferenceCategory>--> |
| 64 | |
| 65 | <!--<PreferenceCategory--> |
| 66 | <!--android:key="hard_keyboard"--> |
| 67 | <!--android:title="@string/builtin_keyboard_settings_title"--> |
| 68 | <!--android:persistent="false">--> |
| 69 | <!--<!– Additional preference screens are inserted here programmatically--> |
| 70 | <!--with low order values to set the key map of each attached keyboard. –>--> |
| 71 | <!--</PreferenceCategory>--> |
satok | 3fa1377 | 2011-06-27 23:44:01 +0900 | [diff] [blame] | 72 | |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 73 | <PreferenceCategory |
| 74 | android:key="voice_category" |
Jean Chalard | 8ba5c42 | 2011-08-31 21:40:43 +0900 | [diff] [blame] | 75 | android:title="@string/voice_category" > |
Amith Yamasani | b44161f | 2010-12-10 13:17:34 -0800 | [diff] [blame] | 76 | |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 77 | <PreferenceScreen |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 78 | android:key="tts_settings" |
| 79 | android:title="@string/tts_settings_title" |
Narayan Kamath | 0cfbb0f | 2011-08-18 17:55:41 +0100 | [diff] [blame] | 80 | android:fragment="com.android.settings.tts.TextToSpeechSettings" |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 81 | /> |
| 82 | |
Amith Yamasani | b44161f | 2010-12-10 13:17:34 -0800 | [diff] [blame] | 83 | </PreferenceCategory> |
| 84 | |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 85 | <PreferenceCategory |
| 86 | android:key="pointer_settings_category" |
Jeff Brown | d82487b | 2011-06-02 03:10:28 -0700 | [diff] [blame] | 87 | android:title="@string/pointer_settings_category"> |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 88 | |
Jeff Brown | d82487b | 2011-06-02 03:10:28 -0700 | [diff] [blame] | 89 | <com.android.settings.PointerSpeedPreference |
| 90 | android:key="pointer_speed" |
| 91 | android:title="@string/pointer_speed" |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 92 | android:dialogTitle="@string/pointer_speed" |
| 93 | /> |
| 94 | |
Jeff Brown | d82487b | 2011-06-02 03:10:28 -0700 | [diff] [blame] | 95 | </PreferenceCategory> |
Jeff Brown | f8fb0e5 | 2012-04-13 20:27:45 -0700 | [diff] [blame] | 96 | |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 97 | <PreferenceCategory |
| 98 | android:key="game_controller_settings_category" |
Jeff Brown | f8fb0e5 | 2012-04-13 20:27:45 -0700 | [diff] [blame] | 99 | android:title="@string/game_controller_settings_category"> |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 100 | |
Fabrice Di Meglio | daef2e2 | 2014-10-15 19:00:35 -0700 | [diff] [blame] | 101 | <SwitchPreference |
Jeff Brown | f8fb0e5 | 2012-04-13 20:27:45 -0700 | [diff] [blame] | 102 | android:key="vibrate_input_devices" |
| 103 | android:title="@string/vibrate_input_devices" |
| 104 | android:summaryOn="@string/vibrate_input_devices_summary" |
| 105 | android:summaryOff="@string/vibrate_input_devices_summary" |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 106 | /> |
| 107 | |
Jeff Brown | f8fb0e5 | 2012-04-13 20:27:45 -0700 | [diff] [blame] | 108 | </PreferenceCategory> |
Fabrice Di Meglio | e6b336d | 2014-07-10 14:59:46 -0700 | [diff] [blame] | 109 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 110 | </PreferenceScreen> |