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" 18 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings" 19 android:title="@string/language_keyboard_settings_title"> 20 21 <PreferenceScreen 22 android:fragment="com.android.settings.LocalePicker" 23 android:key="phone_language" 24 android:title="@string/phone_language"/> 25 26 <com.android.settings.inputmethod.SpellCheckersPreference 27 android:key="spellcheckers_settings" 28 android:title="@string/spellcheckers_settings_title"/> 29 30 <!-- User dictionary preference title and fragment will be set programmatically. --> 31 <PreferenceScreen 32 android:key="key_user_dictionary_settings" /> 33 34 <PreferenceCategory android:key="keyboard_settings_category" 35 android:title="@string/keyboard_settings_category"> 36 <PreferenceScreen android:key="current_input_method" 37 android:title="@string/current_input_method" /> 38 </PreferenceCategory> 39 <PreferenceCategory 40 android:key="hard_keyboard" 41 android:title="@string/builtin_keyboard_settings_title" 42 android:persistent="false"> 43 <CheckBoxPreference 44 android:key="auto_replace" 45 android:title="@string/auto_replace" 46 android:summaryOn="@string/auto_replace_summary" 47 android:summaryOff="@string/auto_replace_summary" 48 android:persistent="false"/> 49 <CheckBoxPreference 50 android:key="auto_caps" 51 android:title="@string/auto_caps" 52 android:summaryOn="@string/auto_caps_summary" 53 android:summaryOff="@string/auto_caps_summary" 54 android:persistent="false"/> 55 <CheckBoxPreference 56 android:key="auto_punctuate" 57 android:title="@string/auto_punctuate" 58 android:summaryOn="@string/auto_punctuate_summary" 59 android:summaryOff="@string/auto_punctuate_summary" 60 android:persistent="false"/> 61 </PreferenceCategory> 62 63 <PreferenceCategory android:key="voice_category" 64 android:title="@string/voice_category" > 65 66 <!-- entries, entryValues, and defaultValue will be populated programmatically. --> 67 <ListPreference 68 android:key="recognizer" 69 android:title="@string/recognizer_title" 70 android:dialogTitle="@string/recognizer_title" /> 71 72 <!-- An intent for this preference will be populated programmatically. --> 73 <PreferenceScreen android:key="recognizer_settings" 74 android:title="@string/recognizer_settings_title" /> 75 76 <PreferenceScreen android:key="tts_settings" 77 android:fragment="com.android.settings.tts.TextToSpeechSettings" 78 android:title="@string/tts_settings_title" /> 79 </PreferenceCategory> 80 81 <PreferenceCategory android:key="pointer_settings_category" 82 android:title="@string/pointer_settings_category"> 83 <com.android.settings.PointerSpeedPreference 84 android:key="pointer_speed" 85 android:title="@string/pointer_speed" 86 android:dialogTitle="@string/pointer_speed" /> 87 </PreferenceCategory> 88 </PreferenceScreen> 89