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 | |
Ken Wakasa | d2c3f37 | 2010-09-28 19:01:17 +0900 | [diff] [blame] | 21 | <PreferenceCategory android:key="language_settings_category" |
Jean Chalard | c087e35 | 2011-05-11 20:38:40 +0900 | [diff] [blame] | 22 | android:title="@string/language_settings_category"> |
Ken Wakasa | d2c3f37 | 2010-09-28 19:01:17 +0900 | [diff] [blame] | 23 | |
Jean Chalard | c087e35 | 2011-05-11 20:38:40 +0900 | [diff] [blame] | 24 | <PreferenceScreen |
| 25 | android:fragment="com.android.settings.LocalePicker" |
| 26 | android:key="phone_language" |
Jean Chalard | 71ad1f4 | 2011-05-12 15:06:16 +0900 | [diff] [blame] | 27 | android:title="@string/phone_language"/> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 28 | |
Jean Chalard | 71ad1f4 | 2011-05-12 15:06:16 +0900 | [diff] [blame] | 29 | <!-- User dictionary preference title and fragment will be set programmatically. --> |
| 30 | <PreferenceScreen |
| 31 | android:key="key_user_dictionary_settings" /> |
Jean Chalard | c087e35 | 2011-05-11 20:38:40 +0900 | [diff] [blame] | 32 | |
satok | e077d2b | 2011-07-25 09:38:11 +0900 | [diff] [blame] | 33 | <com.android.settings.inputmethod.SpellCheckersPreference |
| 34 | android:key="spellcheckers_settings" |
| 35 | android:title="@string/spellcheckers_settings_title"/> |
| 36 | |
Jean Chalard | c087e35 | 2011-05-11 20:38:40 +0900 | [diff] [blame] | 37 | </PreferenceCategory> |
Ken Wakasa | d2c3f37 | 2010-09-28 19:01:17 +0900 | [diff] [blame] | 38 | |
satok | 3fa1377 | 2011-06-27 23:44:01 +0900 | [diff] [blame] | 39 | <PreferenceCategory android:key="keyboard_settings_category" |
| 40 | android:title="@string/keyboard_settings_category"> |
| 41 | <PreferenceScreen android:key="current_input_method" |
| 42 | android:title="@string/current_input_method" /> |
| 43 | </PreferenceCategory> |
| 44 | <PreferenceCategory |
| 45 | android:key="hard_keyboard" |
| 46 | android:title="@string/builtin_keyboard_settings_title" |
| 47 | android:persistent="false"> |
| 48 | <CheckBoxPreference |
| 49 | android:key="auto_replace" |
| 50 | android:title="@string/auto_replace" |
| 51 | android:summaryOn="@string/auto_replace_summary" |
| 52 | android:summaryOff="@string/auto_replace_summary" |
| 53 | android:persistent="false"/> |
| 54 | <CheckBoxPreference |
| 55 | android:key="auto_caps" |
| 56 | android:title="@string/auto_caps" |
| 57 | android:summaryOn="@string/auto_caps_summary" |
| 58 | android:summaryOff="@string/auto_caps_summary" |
| 59 | android:persistent="false"/> |
| 60 | <CheckBoxPreference |
| 61 | android:key="auto_punctuate" |
| 62 | android:title="@string/auto_punctuate" |
| 63 | android:summaryOn="@string/auto_punctuate_summary" |
| 64 | android:summaryOff="@string/auto_punctuate_summary" |
| 65 | android:persistent="false"/> |
| 66 | </PreferenceCategory> |
| 67 | |
Amith Yamasani | b44161f | 2010-12-10 13:17:34 -0800 | [diff] [blame] | 68 | <PreferenceCategory android:key="voice_input_category" |
| 69 | android:title="@string/voice_input_category" > |
| 70 | |
| 71 | <!-- entries, entryValues, and defaultValue will be populated programmatically. --> |
| 72 | <ListPreference |
| 73 | android:key="recognizer" |
| 74 | android:title="@string/recognizer_title" |
| 75 | android:dialogTitle="@string/recognizer_title" /> |
| 76 | |
| 77 | <!-- An intent for this preference will be populated programmatically. --> |
| 78 | <PreferenceScreen android:key="recognizer_settings" |
| 79 | android:title="@string/recognizer_settings_title" /> |
| 80 | </PreferenceCategory> |
| 81 | |
| 82 | <PreferenceCategory android:key="voice_output_category" |
| 83 | android:title="@string/voice_output_category" > |
| 84 | |
| 85 | <PreferenceScreen android:key="tts_settings" |
Narayan Kamath | 0cfbb0f | 2011-08-18 17:55:41 +0100 | [diff] [blame^] | 86 | android:fragment="com.android.settings.tts.TextToSpeechSettings" |
Amith Yamasani | b44161f | 2010-12-10 13:17:34 -0800 | [diff] [blame] | 87 | android:title="@string/tts_settings_title" /> |
| 88 | </PreferenceCategory> |
| 89 | |
Jeff Brown | d82487b | 2011-06-02 03:10:28 -0700 | [diff] [blame] | 90 | <PreferenceCategory android:key="pointer_settings_category" |
| 91 | android:title="@string/pointer_settings_category"> |
| 92 | <com.android.settings.PointerSpeedPreference |
| 93 | android:key="pointer_speed" |
| 94 | android:title="@string/pointer_speed" |
| 95 | android:dialogTitle="@string/pointer_speed" /> |
| 96 | </PreferenceCategory> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 97 | </PreferenceScreen> |