blob: fdf87fc73f130be6e0bd24ce78611b8043d3f531 [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
Ken Wakasad2c3f372010-09-28 19:01:17 +090021 <PreferenceCategory android:key="language_settings_category"
Jean Chalardc087e352011-05-11 20:38:40 +090022 android:title="@string/language_settings_category">
Ken Wakasad2c3f372010-09-28 19:01:17 +090023
Jean Chalardc087e352011-05-11 20:38:40 +090024 <PreferenceScreen
25 android:fragment="com.android.settings.LocalePicker"
26 android:key="phone_language"
Jean Chalard71ad1f42011-05-12 15:06:16 +090027 android:title="@string/phone_language"/>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080028
Jean Chalard71ad1f42011-05-12 15:06:16 +090029 <!-- User dictionary preference title and fragment will be set programmatically. -->
30 <PreferenceScreen
31 android:key="key_user_dictionary_settings" />
Jean Chalardc087e352011-05-11 20:38:40 +090032
33 </PreferenceCategory>
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>
40 <PreferenceCategory
41 android:key="hard_keyboard"
42 android:title="@string/builtin_keyboard_settings_title"
43 android:persistent="false">
44 <CheckBoxPreference
45 android:key="auto_replace"
46 android:title="@string/auto_replace"
47 android:summaryOn="@string/auto_replace_summary"
48 android:summaryOff="@string/auto_replace_summary"
49 android:persistent="false"/>
50 <CheckBoxPreference
51 android:key="auto_caps"
52 android:title="@string/auto_caps"
53 android:summaryOn="@string/auto_caps_summary"
54 android:summaryOff="@string/auto_caps_summary"
55 android:persistent="false"/>
56 <CheckBoxPreference
57 android:key="auto_punctuate"
58 android:title="@string/auto_punctuate"
59 android:summaryOn="@string/auto_punctuate_summary"
60 android:summaryOff="@string/auto_punctuate_summary"
61 android:persistent="false"/>
62 </PreferenceCategory>
63
Amith Yamasanib44161f2010-12-10 13:17:34 -080064 <PreferenceCategory android:key="voice_input_category"
65 android:title="@string/voice_input_category" >
66
67 <!-- entries, entryValues, and defaultValue will be populated programmatically. -->
68 <ListPreference
69 android:key="recognizer"
70 android:title="@string/recognizer_title"
71 android:dialogTitle="@string/recognizer_title" />
72
73 <!-- An intent for this preference will be populated programmatically. -->
74 <PreferenceScreen android:key="recognizer_settings"
75 android:title="@string/recognizer_settings_title" />
76 </PreferenceCategory>
77
78 <PreferenceCategory android:key="voice_output_category"
79 android:title="@string/voice_output_category" >
80
81 <PreferenceScreen android:key="tts_settings"
82 android:fragment="com.android.settings.TextToSpeechSettings"
83 android:title="@string/tts_settings_title" />
84 </PreferenceCategory>
85
Jeff Brownd82487b2011-06-02 03:10:28 -070086 <PreferenceCategory android:key="pointer_settings_category"
87 android:title="@string/pointer_settings_category">
88 <com.android.settings.PointerSpeedPreference
89 android:key="pointer_speed"
90 android:title="@string/pointer_speed"
91 android:dialogTitle="@string/pointer_speed" />
92 </PreferenceCategory>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080093</PreferenceScreen>