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 | |
satok | 8f9b86f | 2011-04-01 19:31:30 +0900 | [diff] [blame] | 17 | <PreferenceScreen |
| 18 | xmlns:android="http://schemas.android.com/apk/res/android" |
| 19 | android:title="@string/english_ime_settings" |
| 20 | android:key="english_ime_settings"> |
Jean Chalard | ce9c417 | 2011-01-19 15:07:14 +0900 | [diff] [blame] | 21 | <PreferenceCategory |
satok | 8f9b86f | 2011-04-01 19:31:30 +0900 | [diff] [blame] | 22 | android:title="@string/general_category" |
| 23 | android:key="general_settings"> |
Jean Chalard | ce9c417 | 2011-01-19 15:07:14 +0900 | [diff] [blame] | 24 | <CheckBoxPreference |
satok | 8f9b86f | 2011-04-01 19:31:30 +0900 | [diff] [blame] | 25 | android:key="auto_cap" |
| 26 | android:title="@string/auto_cap" |
| 27 | android:persistent="true" |
| 28 | android:defaultValue="true" /> |
Jean Chalard | ce9c417 | 2011-01-19 15:07:14 +0900 | [diff] [blame] | 29 | <CheckBoxPreference |
satok | 8f9b86f | 2011-04-01 19:31:30 +0900 | [diff] [blame] | 30 | android:key="vibrate_on" |
| 31 | android:title="@string/vibrate_on_keypress" |
Ken Wakasa | 37af28d | 2011-09-20 20:16:11 +0900 | [diff] [blame] | 32 | android:defaultValue="@bool/config_default_vibration_enabled" |
satok | 8f9b86f | 2011-04-01 19:31:30 +0900 | [diff] [blame] | 33 | android:persistent="true" /> |
Jean Chalard | ce9c417 | 2011-01-19 15:07:14 +0900 | [diff] [blame] | 34 | <CheckBoxPreference |
satok | 8f9b86f | 2011-04-01 19:31:30 +0900 | [diff] [blame] | 35 | android:key="sound_on" |
| 36 | android:title="@string/sound_on_keypress" |
| 37 | android:defaultValue="@bool/config_default_sound_enabled" |
| 38 | android:persistent="true" /> |
Jean Chalard | ce9c417 | 2011-01-19 15:07:14 +0900 | [diff] [blame] | 39 | <CheckBoxPreference |
satok | 8f9b86f | 2011-04-01 19:31:30 +0900 | [diff] [blame] | 40 | android:key="popup_on" |
| 41 | android:title="@string/popup_on_keypress" |
| 42 | android:persistent="true" |
| 43 | android:defaultValue="@bool/config_default_popup_preview" /> |
Jean Chalard | ce9c417 | 2011-01-19 15:07:14 +0900 | [diff] [blame] | 44 | <ListPreference |
satok | 8f9b86f | 2011-04-01 19:31:30 +0900 | [diff] [blame] | 45 | android:key="voice_mode" |
| 46 | android:title="@string/voice_input" |
| 47 | android:persistent="true" |
| 48 | android:entryValues="@array/voice_input_modes_values" |
| 49 | android:entries="@array/voice_input_modes" |
| 50 | android:defaultValue="@string/voice_mode_main" /> |
Jean Chalard | ce9c417 | 2011-01-19 15:07:14 +0900 | [diff] [blame] | 51 | </PreferenceCategory> |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 52 | <PreferenceCategory |
Jean Chalard | b505912 | 2011-04-22 13:08:35 +0900 | [diff] [blame] | 53 | android:title="@string/correction_category" |
| 54 | android:key="correction_settings"> |
Jean Chalard | 4f3d5d3 | 2011-06-24 20:17:38 +0900 | [diff] [blame] | 55 | <PreferenceScreen |
| 56 | android:key="configure_dictionaries_key" |
| 57 | android:title="@string/configure_dictionaries_title"> |
| 58 | <intent |
| 59 | android:action="android.intent.action.MAIN" |
Jean Chalard | 4ef448a | 2011-08-11 21:48:59 +0900 | [diff] [blame] | 60 | android:targetPackage="@string/dictionary_pack_package_name" |
| 61 | android:targetClass="@string/dictionary_pack_settings_activity" /> |
Jean Chalard | 4f3d5d3 | 2011-06-24 20:17:38 +0900 | [diff] [blame] | 62 | </PreferenceScreen> |
satok | 7599cfe | 2010-11-13 19:09:30 +0900 | [diff] [blame] | 63 | <ListPreference |
Tadashi G. Takaoka | 1b1f7f9 | 2010-12-11 17:06:24 +0900 | [diff] [blame] | 64 | android:key="auto_correction_threshold" |
| 65 | android:title="@string/auto_correction" |
| 66 | android:summary="@string/auto_correction_summary" |
Mitsuhiro Shimoda | b1abda8 | 2010-09-28 12:23:26 +0900 | [diff] [blame] | 67 | android:persistent="true" |
Tadashi G. Takaoka | 9ecad8c | 2010-12-13 12:37:23 +0900 | [diff] [blame] | 68 | android:entryValues="@array/auto_correction_threshold_mode_indexes" |
Tadashi G. Takaoka | 1b1f7f9 | 2010-12-11 17:06:24 +0900 | [diff] [blame] | 69 | android:entries="@array/auto_correction_threshold_modes" |
satok | 8f9b86f | 2011-04-01 19:31:30 +0900 | [diff] [blame] | 70 | android:defaultValue="@string/auto_correction_threshold_mode_index_modest" /> |
Jean Chalard | 89764ad | 2011-01-19 17:44:39 +0900 | [diff] [blame] | 71 | <ListPreference |
| 72 | android:key="show_suggestions_setting" |
| 73 | android:summary="@string/prefs_show_suggestions_summary" |
| 74 | android:title="@string/prefs_show_suggestions" |
| 75 | android:persistent="true" |
| 76 | android:entryValues="@array/prefs_suggestion_visibility_values" |
| 77 | android:entries="@array/prefs_suggestion_visibilities" |
satok | 8f9b86f | 2011-04-01 19:31:30 +0900 | [diff] [blame] | 78 | android:defaultValue="@string/prefs_suggestion_visibility_default_value" /> |
Jean Chalard | b505912 | 2011-04-22 13:08:35 +0900 | [diff] [blame] | 79 | </PreferenceCategory> |
| 80 | <PreferenceCategory |
Jean Chalard | b505912 | 2011-04-22 13:08:35 +0900 | [diff] [blame] | 81 | android:title="@string/misc_category" |
| 82 | android:key="misc_settings"> |
satok | c9c54a8 | 2011-09-14 14:07:10 +0900 | [diff] [blame] | 83 | <CheckBoxPreference |
Jean Chalard | e9e51ca | 2012-06-19 11:27:10 -0700 | [diff] [blame] | 84 | android:key="next_word_prediction" |
| 85 | android:title="@string/bigram_prediction" |
| 86 | android:summary="@string/bigram_prediction_summary" |
| 87 | android:persistent="true" |
| 88 | android:defaultValue="true" /> |
| 89 | <CheckBoxPreference |
Tadashi G. Takaoka | 62b8ddd | 2012-07-20 17:49:06 +0900 | [diff] [blame] | 90 | android:key="gesture_input" |
| 91 | android:title="@string/gesture_input" |
| 92 | android:summary="@string/gesture_input_summary" |
| 93 | android:persistent="true" |
| 94 | android:defaultValue="true" /> |
| 95 | <CheckBoxPreference |
satok | c9c54a8 | 2011-09-14 14:07:10 +0900 | [diff] [blame] | 96 | android:key="usability_study_mode" |
| 97 | android:title="@string/prefs_usability_study_mode" |
| 98 | android:persistent="true" |
| 99 | android:defaultValue="false" /> |
| 100 | <PreferenceScreen |
| 101 | android:key="pref_advanced_settings" |
| 102 | android:title="@string/advanced_settings" |
| 103 | android:summary="@string/advanced_settings_summary"> |
Tadashi G. Takaoka | 81d4e3c | 2012-02-17 17:46:01 -0800 | [diff] [blame] | 104 | <CheckBoxPreference |
Tadashi G. Takaoka | 47e2bf3 | 2012-07-27 15:32:29 +0900 | [diff] [blame] | 105 | android:key="pref_key_use_contacts_dict" |
| 106 | android:title="@string/use_contacts_dict" |
| 107 | android:summary="@string/use_contacts_dict_summary" |
| 108 | android:persistent="true" |
| 109 | android:defaultValue="true" /> |
| 110 | <CheckBoxPreference |
Tadashi G. Takaoka | 1a4aa7e | 2012-09-20 10:32:56 +0900 | [diff] [blame^] | 111 | android:key="pref_show_language_switch_key" |
| 112 | android:title="@string/show_language_switch_key" |
| 113 | android:summary="@string/show_language_switch_key_summary" |
Tadashi G. Takaoka | 81d4e3c | 2012-02-17 17:46:01 -0800 | [diff] [blame] | 114 | android:persistent="true" |
Tadashi G. Takaoka | 1a4aa7e | 2012-09-20 10:32:56 +0900 | [diff] [blame^] | 115 | android:defaultValue="true" /> |
Tadashi G. Takaoka | 81d4e3c | 2012-02-17 17:46:01 -0800 | [diff] [blame] | 116 | <CheckBoxPreference |
| 117 | android:key="pref_include_other_imes_in_language_switch_list" |
| 118 | android:title="@string/include_other_imes_in_language_switch_list" |
| 119 | android:summary="@string/include_other_imes_in_language_switch_list_summary" |
| 120 | android:persistent="true" |
| 121 | android:defaultValue="false" /> |
Tadashi G. Takaoka | c27fe62 | 2012-04-13 16:41:24 +0900 | [diff] [blame] | 122 | <PreferenceScreen |
| 123 | android:fragment="com.android.inputmethod.latin.AdditionalSubtypeSettings" |
| 124 | android:key="custom_input_styles" |
| 125 | android:title="@string/custom_input_styles_title" /> |
satok | c9c54a8 | 2011-09-14 14:07:10 +0900 | [diff] [blame] | 126 | <!-- Values for popup dismiss delay are added programatically --> |
| 127 | <ListPreference |
| 128 | android:key="pref_key_preview_popup_dismiss_delay" |
| 129 | android:title="@string/key_preview_popup_dismiss_delay" /> |
satok | 4339657 | 2011-09-28 20:11:05 +0900 | [diff] [blame] | 130 | <PreferenceScreen |
| 131 | android:key="pref_vibration_duration_settings" |
satok | 79c0acf | 2011-10-11 16:39:11 +0900 | [diff] [blame] | 132 | android:title="@string/prefs_keypress_vibration_duration_settings"/> |
| 133 | <PreferenceScreen |
| 134 | android:key="pref_keypress_sound_volume" |
| 135 | android:title="@string/prefs_keypress_sound_volume_settings" /> |
Tadashi G. Takaoka | 47e2bf3 | 2012-07-27 15:32:29 +0900 | [diff] [blame] | 136 | <CheckBoxPreference |
| 137 | android:key="pref_gesture_preview_trail" |
| 138 | android:title="@string/gesture_preview_trail" |
| 139 | android:persistent="true" |
| 140 | android:defaultValue="true" /> |
| 141 | <CheckBoxPreference |
Tadashi G. Takaoka | 4f8e451 | 2012-09-19 18:12:39 +0900 | [diff] [blame] | 142 | android:key="pref_show_gesture_floating_preview_text" |
Tadashi G. Takaoka | 47e2bf3 | 2012-07-27 15:32:29 +0900 | [diff] [blame] | 143 | android:title="@string/gesture_floating_preview_text" |
| 144 | android:summary="@string/gesture_floating_preview_text_summary" |
| 145 | android:persistent="true" |
Tadashi G. Takaoka | 4f8e451 | 2012-09-19 18:12:39 +0900 | [diff] [blame] | 146 | android:defaultValue="false" /> |
satok | c9c54a8 | 2011-09-14 14:07:10 +0900 | [diff] [blame] | 147 | </PreferenceScreen> |
Jean Chalard | b505912 | 2011-04-22 13:08:35 +0900 | [diff] [blame] | 148 | </PreferenceCategory> |
satok | b1ae5d8 | 2011-04-19 21:52:12 -0700 | [diff] [blame] | 149 | </PreferenceScreen> |