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