blob: 3e7fdb52232032c2f732eb62957ec83973667aa5 [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"
Amith Yamasanid7993472010-08-18 13:59:28 -070018 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
19 android:title="@string/language_keyboard_settings_title">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080020
Jean Chalard8ba5c422011-08-31 21:40:43 +090021 <PreferenceScreen
22 android:fragment="com.android.settings.LocalePicker"
23 android:key="phone_language"
24 android:title="@string/phone_language"/>
Ken Wakasad2c3f372010-09-28 19:01:17 +090025
Jean Chalard8ba5c422011-08-31 21:40:43 +090026 <com.android.settings.inputmethod.SpellCheckersPreference
27 android:key="spellcheckers_settings"
28 android:title="@string/spellcheckers_settings_title"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080029
Jean Chalard8ba5c422011-08-31 21:40:43 +090030 <!-- User dictionary preference title and fragment will be set programmatically. -->
31 <PreferenceScreen
Satoshi Kataoka5df33072013-04-30 14:30:12 +090032 android:key="key_user_dictionary_settings"
33 android:title="@string/user_dict_settings_title" />
Ken Wakasad2c3f372010-09-28 19:01:17 +090034
satok3fa13772011-06-27 23:44:01 +090035 <PreferenceCategory android:key="keyboard_settings_category"
36 android:title="@string/keyboard_settings_category">
37 <PreferenceScreen android:key="current_input_method"
38 android:title="@string/current_input_method" />
39 </PreferenceCategory>
Jeff Browne46c5f32012-04-05 11:42:18 -070040
satok3fa13772011-06-27 23:44:01 +090041 <PreferenceCategory
42 android:key="hard_keyboard"
43 android:title="@string/builtin_keyboard_settings_title"
44 android:persistent="false">
Jeff Browne46c5f32012-04-05 11:42:18 -070045 <!-- Additional preference screens are inserted here programmatically
46 with low order values to set the key map of each attached keyboard. -->
47
satok3fa13772011-06-27 23:44:01 +090048 <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"
Jeff Browne46c5f32012-04-05 11:42:18 -070053 android:order="1000"
satok3fa13772011-06-27 23:44:01 +090054 android:persistent="false"/>
55 <CheckBoxPreference
56 android:key="auto_caps"
57 android:title="@string/auto_caps"
58 android:summaryOn="@string/auto_caps_summary"
59 android:summaryOff="@string/auto_caps_summary"
Jeff Browne46c5f32012-04-05 11:42:18 -070060 android:order="1001"
satok3fa13772011-06-27 23:44:01 +090061 android:persistent="false"/>
62 <CheckBoxPreference
63 android:key="auto_punctuate"
64 android:title="@string/auto_punctuate"
65 android:summaryOn="@string/auto_punctuate_summary"
66 android:summaryOff="@string/auto_punctuate_summary"
Jeff Browne46c5f32012-04-05 11:42:18 -070067 android:order="1002"
satok3fa13772011-06-27 23:44:01 +090068 android:persistent="false"/>
69 </PreferenceCategory>
70
Jean Chalard8ba5c422011-08-31 21:40:43 +090071 <PreferenceCategory android:key="voice_category"
72 android:title="@string/voice_category" >
Amith Yamasanib44161f2010-12-10 13:17:34 -080073
74 <!-- entries, entryValues, and defaultValue will be populated programmatically. -->
75 <ListPreference
76 android:key="recognizer"
77 android:title="@string/recognizer_title"
78 android:dialogTitle="@string/recognizer_title" />
79
80 <!-- An intent for this preference will be populated programmatically. -->
81 <PreferenceScreen android:key="recognizer_settings"
82 android:title="@string/recognizer_settings_title" />
Amith Yamasanib44161f2010-12-10 13:17:34 -080083
84 <PreferenceScreen android:key="tts_settings"
Narayan Kamath0cfbb0f2011-08-18 17:55:41 +010085 android:fragment="com.android.settings.tts.TextToSpeechSettings"
Amith Yamasanib44161f2010-12-10 13:17:34 -080086 android:title="@string/tts_settings_title" />
87 </PreferenceCategory>
88
Jeff Brownd82487b2011-06-02 03:10:28 -070089 <PreferenceCategory android:key="pointer_settings_category"
90 android:title="@string/pointer_settings_category">
91 <com.android.settings.PointerSpeedPreference
92 android:key="pointer_speed"
93 android:title="@string/pointer_speed"
94 android:dialogTitle="@string/pointer_speed" />
95 </PreferenceCategory>
Jeff Brownf8fb0e52012-04-13 20:27:45 -070096
97 <PreferenceCategory android:key="game_controller_settings_category"
98 android:title="@string/game_controller_settings_category">
99 <CheckBoxPreference
100 android:key="vibrate_input_devices"
101 android:title="@string/vibrate_input_devices"
102 android:summaryOn="@string/vibrate_input_devices_summary"
103 android:summaryOff="@string/vibrate_input_devices_summary"
104 android:persistent="false"/>
105 </PreferenceCategory>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800106</PreferenceScreen>