blob: f19fb095a80862918f9f980c42b5adb89cd6b7a8 [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
Amith Yamasanib44161f2010-12-10 13:17:34 -080035 <PreferenceCategory android:key="voice_input_category"
36 android:title="@string/voice_input_category" >
37
38 <!-- entries, entryValues, and defaultValue will be populated programmatically. -->
39 <ListPreference
40 android:key="recognizer"
41 android:title="@string/recognizer_title"
42 android:dialogTitle="@string/recognizer_title" />
43
44 <!-- An intent for this preference will be populated programmatically. -->
45 <PreferenceScreen android:key="recognizer_settings"
46 android:title="@string/recognizer_settings_title" />
47 </PreferenceCategory>
48
49 <PreferenceCategory android:key="voice_output_category"
50 android:title="@string/voice_output_category" >
51
52 <PreferenceScreen android:key="tts_settings"
53 android:fragment="com.android.settings.TextToSpeechSettings"
54 android:title="@string/tts_settings_title" />
55 </PreferenceCategory>
56
Ken Wakasad2c3f372010-09-28 19:01:17 +090057 <PreferenceCategory android:key="keyboard_settings_category"
Ken Wakasa6d5b8952010-09-30 11:39:09 +090058 android:title="@string/keyboard_settings_category">
satokc88a7ff2010-12-15 04:57:24 +090059 <PreferenceScreen android:key="current_input_method"
Amith Yamasanibe6fab0d2011-01-12 14:18:58 -080060 android:title="@string/current_input_method" />
Amith Yamasanie7739d12010-05-28 18:19:43 -070061
satokc88a7ff2010-12-15 04:57:24 +090062 <ListPreference android:key="input_method_selector"
63 android:title="@string/input_method_selector"
64 android:persistent="true"
65 android:entryValues="@array/input_method_selector_values"
66 android:entries="@array/input_method_selector_titles"
67 android:defaultValue="@string/input_method_selector_visibility_default_value"/>
68
69 <PreferenceScreen android:key="configure_input_method"
70 android:title="@string/configure_input_method">
71 <intent android:action="android.settings.INPUT_METHOD_SETTINGS"/>
72 </PreferenceScreen>
Amith Yamasanie7739d12010-05-28 18:19:43 -070073 </PreferenceCategory>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080074</PreferenceScreen>