The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 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" |
Amith Yamasani | d799347 | 2010-08-18 13:59:28 -0700 | [diff] [blame] | 18 | xmlns:settings="http://schemas.android.com/apk/res/com.android.settings" |
| 19 | android:title="@string/language_keyboard_settings_title"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 20 | |
Ken Wakasa | d2c3f37 | 2010-09-28 19:01:17 +0900 | [diff] [blame] | 21 | <PreferenceCategory android:key="language_settings_category" |
| 22 | android:title="@string/language_settings_category" /> |
| 23 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 24 | <PreferenceScreen |
Daisuke Miyakawa | 0cc35e4 | 2010-08-24 15:50:43 -0700 | [diff] [blame] | 25 | android:fragment="com.android.settings.LocalePicker" |
| 26 | android:key="phone_language" |
| 27 | android:title="@string/phone_language"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 28 | </PreferenceScreen> |
| 29 | |
Ken Wakasa | d2c3f37 | 2010-09-28 19:01:17 +0900 | [diff] [blame] | 30 | <PreferenceScreen |
Ken Wakasa | 6d5b895 | 2010-09-30 11:39:09 +0900 | [diff] [blame] | 31 | android:fragment="com.android.settings.UserDictionarySettings" |
| 32 | android:title="@string/user_dict_settings_title" |
| 33 | android:summary="@string/user_dict_settings_summary"> |
Ken Wakasa | d2c3f37 | 2010-09-28 19:01:17 +0900 | [diff] [blame] | 34 | </PreferenceScreen> |
| 35 | |
Amith Yamasani | b44161f | 2010-12-10 13:17:34 -0800 | [diff] [blame] | 36 | <PreferenceCategory android:key="voice_input_category" |
| 37 | android:title="@string/voice_input_category" > |
| 38 | |
| 39 | <!-- entries, entryValues, and defaultValue will be populated programmatically. --> |
| 40 | <ListPreference |
| 41 | android:key="recognizer" |
| 42 | android:title="@string/recognizer_title" |
| 43 | android:dialogTitle="@string/recognizer_title" /> |
| 44 | |
| 45 | <!-- An intent for this preference will be populated programmatically. --> |
| 46 | <PreferenceScreen android:key="recognizer_settings" |
| 47 | android:title="@string/recognizer_settings_title" /> |
| 48 | </PreferenceCategory> |
| 49 | |
| 50 | <PreferenceCategory android:key="voice_output_category" |
| 51 | android:title="@string/voice_output_category" > |
| 52 | |
| 53 | <PreferenceScreen android:key="tts_settings" |
| 54 | android:fragment="com.android.settings.TextToSpeechSettings" |
| 55 | android:title="@string/tts_settings_title" /> |
| 56 | </PreferenceCategory> |
| 57 | |
Ken Wakasa | d2c3f37 | 2010-09-28 19:01:17 +0900 | [diff] [blame] | 58 | <PreferenceCategory android:key="keyboard_settings_category" |
Ken Wakasa | 6d5b895 | 2010-09-30 11:39:09 +0900 | [diff] [blame] | 59 | android:title="@string/keyboard_settings_category"> |
satok | c88a7ff | 2010-12-15 04:57:24 +0900 | [diff] [blame] | 60 | <PreferenceScreen android:key="current_input_method" |
Amith Yamasani | be6fab0d | 2011-01-12 14:18:58 -0800 | [diff] [blame^] | 61 | android:title="@string/current_input_method" /> |
Amith Yamasani | e7739d1 | 2010-05-28 18:19:43 -0700 | [diff] [blame] | 62 | |
satok | c88a7ff | 2010-12-15 04:57:24 +0900 | [diff] [blame] | 63 | <ListPreference android:key="input_method_selector" |
| 64 | android:title="@string/input_method_selector" |
| 65 | android:persistent="true" |
| 66 | android:entryValues="@array/input_method_selector_values" |
| 67 | android:entries="@array/input_method_selector_titles" |
| 68 | android:defaultValue="@string/input_method_selector_visibility_default_value"/> |
| 69 | |
| 70 | <PreferenceScreen android:key="configure_input_method" |
| 71 | android:title="@string/configure_input_method"> |
| 72 | <intent android:action="android.settings.INPUT_METHOD_SETTINGS"/> |
| 73 | </PreferenceScreen> |
Amith Yamasani | e7739d1 | 2010-05-28 18:19:43 -0700 | [diff] [blame] | 74 | </PreferenceCategory> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 75 | </PreferenceScreen> |