blob: 9d12857f877db278950f77689fc640c04c1cde81 [file] [log] [blame]
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001<?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"
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -070018 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
19 android:key="language_keyboard_settings"
Amith Yamasanid7993472010-08-18 13:59:28 -070020 android:title="@string/language_keyboard_settings_title">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080021
Jean Chalard8ba5c422011-08-31 21:40:43 +090022 <PreferenceScreen
Jean Chalard8ba5c422011-08-31 21:40:43 +090023 android:key="phone_language"
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -070024 android:title="@string/phone_language"
25 android:fragment="com.android.settings.LocalePicker"
26 />
Ken Wakasad2c3f372010-09-28 19:01:17 +090027
Tadashi G. Takaokacd6fdea2014-07-10 15:37:28 +090028 <!-- 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 Chalard8ba5c422011-08-31 21:40:43 +090032 android:key="spellcheckers_settings"
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -070033 android:title="@string/spellcheckers_settings_title"
34 settings:keywords="@string/keywords_spell_checker"
Tadashi G. Takaokacd6fdea2014-07-10 15:37:28 +090035 android:persistent="false"
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -070036 />
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080037
Jean Chalard8ba5c422011-08-31 21:40:43 +090038 <!-- User dictionary preference title and fragment will be set programmatically. -->
39 <PreferenceScreen
Satoshi Kataoka5df33072013-04-30 14:30:12 +090040 android:key="key_user_dictionary_settings"
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -070041 android:title="@string/user_dict_settings_title"
42 />
Ken Wakasad2c3f372010-09-28 19:01:17 +090043
Tadashi G. Takaoka74e7c3e2014-07-09 16:26:12 +090044 <PreferenceCategory
45 android:key="keyboard_settings_category"
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -070046 android:title="@string/keyboard_settings_category"
47 settings:keywords="@string/keywords_keyboard_and_ime">
48
Tadashi G. Takaoka74e7c3e2014-07-09 16:26:12 +090049 <!-- An intent for this preference will be populated programmatically. -->
50 <PreferenceScreen
51 android:key="choose_input_methods"
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -070052 android:title="@string/choose_input_methods"
53 />
54
Tadashi G. Takaoka74e7c3e2014-07-09 16:26:12 +090055 <PreferenceScreen
56 android:key="current_input_method"
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -070057 android:title="@string/current_input_method"
58 />
Tadashi G. Takaoka74e7c3e2014-07-09 16:26:12 +090059 <!-- Enabled input method list will be populated programmatically here. -->
satok3fa13772011-06-27 23:44:01 +090060 </PreferenceCategory>
Jeff Browne46c5f32012-04-05 11:42:18 -070061
satok3fa13772011-06-27 23:44:01 +090062 <PreferenceCategory
63 android:key="hard_keyboard"
64 android:title="@string/builtin_keyboard_settings_title"
65 android:persistent="false">
Jeff Browne46c5f32012-04-05 11:42:18 -070066 <!-- Additional preference screens are inserted here programmatically
67 with low order values to set the key map of each attached keyboard. -->
68
satok3fa13772011-06-27 23:44:01 +090069 <CheckBoxPreference
70 android:key="auto_replace"
71 android:title="@string/auto_replace"
72 android:summaryOn="@string/auto_replace_summary"
73 android:summaryOff="@string/auto_replace_summary"
Jeff Browne46c5f32012-04-05 11:42:18 -070074 android:order="1000"
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -070075 android:persistent="false"
76 />
77
satok3fa13772011-06-27 23:44:01 +090078 <CheckBoxPreference
79 android:key="auto_caps"
80 android:title="@string/auto_caps"
81 android:summaryOn="@string/auto_caps_summary"
82 android:summaryOff="@string/auto_caps_summary"
Jeff Browne46c5f32012-04-05 11:42:18 -070083 android:order="1001"
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -070084 android:persistent="false"
85 />
86
satok3fa13772011-06-27 23:44:01 +090087 <CheckBoxPreference
88 android:key="auto_punctuate"
89 android:title="@string/auto_punctuate"
90 android:summaryOn="@string/auto_punctuate_summary"
91 android:summaryOff="@string/auto_punctuate_summary"
Jeff Browne46c5f32012-04-05 11:42:18 -070092 android:order="1002"
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -070093 android:persistent="false"
94 />
95
satok3fa13772011-06-27 23:44:01 +090096 </PreferenceCategory>
97
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -070098 <PreferenceCategory
99 android:key="voice_category"
Jean Chalard8ba5c422011-08-31 21:40:43 +0900100 android:title="@string/voice_category" >
Amith Yamasanib44161f2010-12-10 13:17:34 -0800101
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -0700102 <PreferenceScreen
Dianne Hackbornff795ff2014-07-18 19:20:11 -0700103 android:key="voice_input_settings"
104 android:title="@string/voice_input_settings_title"
105 settings:keywords="@string/keywords_voice_input"
106 android:fragment="com.android.settings.voice.VoiceInputSettings"
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -0700107 />
Amith Yamasanib44161f2010-12-10 13:17:34 -0800108
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -0700109 <PreferenceScreen
110 android:key="tts_settings"
111 android:title="@string/tts_settings_title"
112 settings:keywords="@string/keywords_text_to_speech_output"
Narayan Kamath0cfbb0f2011-08-18 17:55:41 +0100113 android:fragment="com.android.settings.tts.TextToSpeechSettings"
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -0700114 />
115
Amith Yamasanib44161f2010-12-10 13:17:34 -0800116 </PreferenceCategory>
117
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -0700118 <PreferenceCategory
119 android:key="pointer_settings_category"
Jeff Brownd82487b2011-06-02 03:10:28 -0700120 android:title="@string/pointer_settings_category">
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -0700121
Jeff Brownd82487b2011-06-02 03:10:28 -0700122 <com.android.settings.PointerSpeedPreference
123 android:key="pointer_speed"
124 android:title="@string/pointer_speed"
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -0700125 android:dialogTitle="@string/pointer_speed"
126 />
127
Jeff Brownd82487b2011-06-02 03:10:28 -0700128 </PreferenceCategory>
Jeff Brownf8fb0e52012-04-13 20:27:45 -0700129
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -0700130 <PreferenceCategory
131 android:key="game_controller_settings_category"
Jeff Brownf8fb0e52012-04-13 20:27:45 -0700132 android:title="@string/game_controller_settings_category">
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -0700133
Jeff Brownf8fb0e52012-04-13 20:27:45 -0700134 <CheckBoxPreference
135 android:key="vibrate_input_devices"
136 android:title="@string/vibrate_input_devices"
137 android:summaryOn="@string/vibrate_input_devices_summary"
138 android:summaryOff="@string/vibrate_input_devices_summary"
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -0700139 android:persistent="false"
140 />
141
Jeff Brownf8fb0e52012-04-13 20:27:45 -0700142 </PreferenceCategory>
Fabrice Di Meglioe6b336d2014-07-10 14:59:46 -0700143
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800144</PreferenceScreen>