The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [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" |
| 18 | android:title="@string/english_ime_settings" |
| 19 | android:key="english_ime_settings"> |
| 20 | |
| 21 | <CheckBoxPreference |
| 22 | android:key="vibrate_on" |
| 23 | android:title="@string/vibrate_on_keypress" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 24 | android:persistent="true" |
| 25 | /> |
| 26 | |
| 27 | <CheckBoxPreference |
| 28 | android:key="sound_on" |
| 29 | android:title="@string/sound_on_keypress" |
| 30 | android:persistent="true" |
| 31 | /> |
| 32 | |
| 33 | <CheckBoxPreference |
Yohei Fujii | 0b0a686 | 2010-08-11 20:50:20 +0900 | [diff] [blame] | 34 | android:key="popup_on" |
| 35 | android:title="@string/popup_on_keypress" |
| 36 | android:persistent="true" |
| 37 | android:defaultValue="@bool/default_popup_preview" |
| 38 | /> |
| 39 | |
| 40 | <CheckBoxPreference |
satok | 66b42a1 | 2010-09-06 19:18:38 +0900 | [diff] [blame] | 41 | android:key="recorrection_enabled" |
| 42 | android:title="@string/prefs_enable_recorrection" |
Ken Wakasa | 47a9c3f | 2010-10-07 00:57:37 +0900 | [diff] [blame] | 43 | android:summary="@string/prefs_enable_recorrection_summary" |
satok | 66b42a1 | 2010-09-06 19:18:38 +0900 | [diff] [blame] | 44 | android:persistent="true" |
| 45 | android:defaultValue="@bool/default_recorrection_enabled" |
| 46 | /> |
| 47 | |
| 48 | <CheckBoxPreference |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 49 | android:key="auto_cap" |
| 50 | android:title="@string/auto_cap" |
| 51 | android:persistent="true" |
| 52 | android:defaultValue="true" |
| 53 | /> |
| 54 | |
Amith Yamasani | 457fdff | 2010-02-09 14:17:30 -0800 | [diff] [blame] | 55 | <ListPreference |
Ken Wakasa | 1508c0e | 2010-09-15 13:37:52 +0900 | [diff] [blame] | 56 | android:key="settings_key" |
| 57 | android:title="@string/prefs_settings_key" |
| 58 | android:persistent="true" |
| 59 | android:entryValues="@array/settings_key_modes_values" |
| 60 | android:entries="@array/settings_key_modes" |
| 61 | android:defaultValue="@string/settings_key_mode_auto" |
| 62 | /> |
| 63 | |
| 64 | <ListPreference |
Amith Yamasani | 457fdff | 2010-02-09 14:17:30 -0800 | [diff] [blame] | 65 | android:key="voice_mode" |
| 66 | android:title="@string/voice_input" |
Amith Yamasani | b1cd701 | 2010-01-28 07:33:27 -0800 | [diff] [blame] | 67 | android:persistent="true" |
Amith Yamasani | 457fdff | 2010-02-09 14:17:30 -0800 | [diff] [blame] | 68 | android:entryValues="@array/voice_input_modes_values" |
| 69 | android:entries="@array/voice_input_modes" |
| 70 | android:defaultValue="@string/voice_mode_main" |
Amith Yamasani | b1cd701 | 2010-01-28 07:33:27 -0800 | [diff] [blame] | 71 | /> |
| 72 | |
satok | b6c1255 | 2010-11-20 07:32:24 +0900 | [diff] [blame] | 73 | <!-- TODO: Filter subtypes by IME in SubtypeEnabler --> |
| 74 | <!-- TODO: Maybe use this only for phone? --> |
Amith Yamasani | 36fcf25 | 2009-10-12 13:48:35 -0700 | [diff] [blame] | 75 | <PreferenceScreen |
Amith Yamasani | 457fdff | 2010-02-09 14:17:30 -0800 | [diff] [blame] | 76 | android:title="@string/language_selection_title" |
| 77 | android:summary="@string/language_selection_summary"> |
Amith Yamasani | 36fcf25 | 2009-10-12 13:48:35 -0700 | [diff] [blame] | 78 | <intent |
satok | b6c1255 | 2010-11-20 07:32:24 +0900 | [diff] [blame] | 79 | android:action="android.settings.INPUT_METHOD_AND_SUBTYPE_ENABLER"/> |
Amith Yamasani | 36fcf25 | 2009-10-12 13:48:35 -0700 | [diff] [blame] | 80 | </PreferenceScreen> |
| 81 | |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 82 | <PreferenceCategory |
| 83 | android:title="@string/prediction_category" |
| 84 | android:key="prediction_settings"> |
Amith Yamasani | 6e3d427 | 2009-03-25 17:39:38 -0700 | [diff] [blame] | 85 | |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 86 | <CheckBoxPreference |
Amith Yamasani | 6e3d427 | 2009-03-25 17:39:38 -0700 | [diff] [blame] | 87 | android:key="quick_fixes" |
| 88 | android:title="@string/quick_fixes" |
| 89 | android:summary="@string/quick_fixes_summary" |
| 90 | android:persistent="true" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 91 | android:defaultValue="true" |
| 92 | /> |
| 93 | |
satok | 7599cfe | 2010-11-13 19:09:30 +0900 | [diff] [blame] | 94 | <ListPreference |
| 95 | android:key="show_suggestions_setting" |
| 96 | android:summary="@string/prefs_show_suggestions_summary" |
| 97 | android:title="@string/prefs_show_suggestions" |
Amith Yamasani | 6e3d427 | 2009-03-25 17:39:38 -0700 | [diff] [blame] | 98 | android:persistent="true" |
satok | 7599cfe | 2010-11-13 19:09:30 +0900 | [diff] [blame] | 99 | android:entryValues="@array/prefs_suggestion_visibility_values" |
| 100 | android:entries="@array/prefs_suggestion_visibilities" |
| 101 | android:defaultValue="@string/prefs_suggestion_visibility_default_value" |
Amith Yamasani | 6e3d427 | 2009-03-25 17:39:38 -0700 | [diff] [blame] | 102 | /> |
| 103 | |
Mitsuhiro Shimoda | b1abda8 | 2010-09-28 12:23:26 +0900 | [diff] [blame] | 104 | <ListPreference |
Tadashi G. Takaoka | 1b1f7f9 | 2010-12-11 17:06:24 +0900 | [diff] [blame^] | 105 | android:key="auto_correction_threshold" |
| 106 | android:title="@string/auto_correction" |
| 107 | android:summary="@string/auto_correction_summary" |
Mitsuhiro Shimoda | b1abda8 | 2010-09-28 12:23:26 +0900 | [diff] [blame] | 108 | android:persistent="true" |
Tadashi G. Takaoka | 1b1f7f9 | 2010-12-11 17:06:24 +0900 | [diff] [blame^] | 109 | android:entryValues="@array/auto_correction_threshold_mode_values" |
| 110 | android:entries="@array/auto_correction_threshold_modes" |
| 111 | android:defaultValue="@string/auto_correction_threshold_mode_value_modest" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 112 | /> |
satok | 01303e3 | 2010-05-19 14:03:00 +0900 | [diff] [blame] | 113 | |
Jae Yong Sung | 937d5ad | 2010-06-30 20:28:04 -0700 | [diff] [blame] | 114 | <CheckBoxPreference |
| 115 | android:key="bigram_suggestion" |
| 116 | android:title="@string/bigram_suggestion" |
| 117 | android:summary="@string/bigram_suggestion_summary" |
| 118 | android:persistent="true" |
| 119 | android:defaultValue="true" |
Jae Yong Sung | 937d5ad | 2010-06-30 20:28:04 -0700 | [diff] [blame] | 120 | /> |
satok | 95175d4 | 2010-11-16 07:48:04 +0900 | [diff] [blame] | 121 | </PreferenceCategory> |
| 122 | |
| 123 | <CheckBoxPreference |
| 124 | android:key="usability_study_mode" |
| 125 | android:title="@string/prefs_usability_study_mode" |
| 126 | android:persistent="true" |
| 127 | android:defaultValue="false" |
| 128 | /> |
satok | b9c57e6 | 2010-07-16 13:02:45 +0900 | [diff] [blame] | 129 | |
Amith Yamasani | 6e3d427 | 2009-03-25 17:39:38 -0700 | [diff] [blame] | 130 | </PreferenceScreen> |