blob: fe82b327ca94ecbfa338d0f9c079c98a6e95b589 [file] [log] [blame]
The Android Open Source Project923bf412009-03-13 15:11:42 -07001<?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 Chalardce9c4172011-01-19 15:07:14 +09007
The Android Open Source Project923bf412009-03-13 15:11:42 -07008 http://www.apache.org/licenses/LICENSE-2.0
Jean Chalardce9c4172011-01-19 15:07:14 +09009
The Android Open Source Project923bf412009-03-13 15:11:42 -070010 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
satok8f9b86f2011-04-01 19:31:30 +090017<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 Chalardce9c4172011-01-19 15:07:14 +090021 <PreferenceCategory
satok8f9b86f2011-04-01 19:31:30 +090022 android:title="@string/general_category"
23 android:key="general_settings">
Jean Chalardce9c4172011-01-19 15:07:14 +090024 <CheckBoxPreference
satok8f9b86f2011-04-01 19:31:30 +090025 android:key="auto_cap"
26 android:title="@string/auto_cap"
Tadashi G. Takaoka9458e712012-09-26 11:09:15 +090027 android:summary="@string/auto_cap_summary"
satok8f9b86f2011-04-01 19:31:30 +090028 android:persistent="true"
29 android:defaultValue="true" />
Jean Chalardce9c4172011-01-19 15:07:14 +090030 <CheckBoxPreference
satok8f9b86f2011-04-01 19:31:30 +090031 android:key="vibrate_on"
32 android:title="@string/vibrate_on_keypress"
Ken Wakasa37af28d2011-09-20 20:16:11 +090033 android:defaultValue="@bool/config_default_vibration_enabled"
satok8f9b86f2011-04-01 19:31:30 +090034 android:persistent="true" />
Jean Chalardce9c4172011-01-19 15:07:14 +090035 <CheckBoxPreference
satok8f9b86f2011-04-01 19:31:30 +090036 android:key="sound_on"
37 android:title="@string/sound_on_keypress"
38 android:defaultValue="@bool/config_default_sound_enabled"
39 android:persistent="true" />
Jean Chalardce9c4172011-01-19 15:07:14 +090040 <CheckBoxPreference
satok8f9b86f2011-04-01 19:31:30 +090041 android:key="popup_on"
42 android:title="@string/popup_on_keypress"
43 android:persistent="true"
44 android:defaultValue="@bool/config_default_popup_preview" />
Jean Chalardce9c4172011-01-19 15:07:14 +090045 <ListPreference
satok8f9b86f2011-04-01 19:31:30 +090046 android:key="voice_mode"
47 android:title="@string/voice_input"
48 android:persistent="true"
49 android:entryValues="@array/voice_input_modes_values"
50 android:entries="@array/voice_input_modes"
51 android:defaultValue="@string/voice_mode_main" />
Jean Chalardce9c4172011-01-19 15:07:14 +090052 </PreferenceCategory>
The Android Open Source Project923bf412009-03-13 15:11:42 -070053 <PreferenceCategory
Jean Chalardb5059122011-04-22 13:08:35 +090054 android:title="@string/correction_category"
55 android:key="correction_settings">
Jean Chalard4f3d5d32011-06-24 20:17:38 +090056 <PreferenceScreen
57 android:key="configure_dictionaries_key"
58 android:title="@string/configure_dictionaries_title">
59 <intent
60 android:action="android.intent.action.MAIN"
Jean Chalard4ef448a2011-08-11 21:48:59 +090061 android:targetPackage="@string/dictionary_pack_package_name"
62 android:targetClass="@string/dictionary_pack_settings_activity" />
Jean Chalard4f3d5d32011-06-24 20:17:38 +090063 </PreferenceScreen>
satok7599cfe2010-11-13 19:09:30 +090064 <ListPreference
Tadashi G. Takaoka1b1f7f92010-12-11 17:06:24 +090065 android:key="auto_correction_threshold"
66 android:title="@string/auto_correction"
67 android:summary="@string/auto_correction_summary"
Mitsuhiro Shimodab1abda82010-09-28 12:23:26 +090068 android:persistent="true"
Tadashi G. Takaoka9ecad8c2010-12-13 12:37:23 +090069 android:entryValues="@array/auto_correction_threshold_mode_indexes"
Tadashi G. Takaoka1b1f7f92010-12-11 17:06:24 +090070 android:entries="@array/auto_correction_threshold_modes"
satok8f9b86f2011-04-01 19:31:30 +090071 android:defaultValue="@string/auto_correction_threshold_mode_index_modest" />
Jean Chalard89764ad2011-01-19 17:44:39 +090072 <ListPreference
73 android:key="show_suggestions_setting"
74 android:summary="@string/prefs_show_suggestions_summary"
75 android:title="@string/prefs_show_suggestions"
76 android:persistent="true"
77 android:entryValues="@array/prefs_suggestion_visibility_values"
78 android:entries="@array/prefs_suggestion_visibilities"
satok8f9b86f2011-04-01 19:31:30 +090079 android:defaultValue="@string/prefs_suggestion_visibility_default_value" />
Jean Chalardb5059122011-04-22 13:08:35 +090080 </PreferenceCategory>
81 <PreferenceCategory
Tadashi G. Takaoka9458e712012-09-26 11:09:15 +090082 android:title="@string/gesture_typing_category"
83 android:key="gesture_typing_settings">
84 <CheckBoxPreference
85 android:key="gesture_input"
86 android:title="@string/gesture_input"
87 android:summary="@string/gesture_input_summary"
88 android:persistent="true"
89 android:defaultValue="true" />
90 <CheckBoxPreference
91 android:key="pref_show_gesture_floating_preview_text"
92 android:title="@string/gesture_floating_preview_text"
93 android:summary="@string/gesture_floating_preview_text_summary"
94 android:persistent="true"
95 android:defaultValue="false" />
96 <CheckBoxPreference
97 android:key="pref_gesture_preview_trail"
98 android:title="@string/gesture_preview_trail"
99 android:persistent="true"
100 android:defaultValue="true" />
101 </PreferenceCategory>
102 <PreferenceCategory
Jean Chalardb5059122011-04-22 13:08:35 +0900103 android:title="@string/misc_category"
104 android:key="misc_settings">
satokc9c54a82011-09-14 14:07:10 +0900105 <CheckBoxPreference
Jean Chalarde9e51ca2012-06-19 11:27:10 -0700106 android:key="next_word_prediction"
107 android:title="@string/bigram_prediction"
108 android:summary="@string/bigram_prediction_summary"
109 android:persistent="true"
110 android:defaultValue="true" />
satokc9c54a82011-09-14 14:07:10 +0900111 <PreferenceScreen
112 android:key="pref_advanced_settings"
113 android:title="@string/advanced_settings"
114 android:summary="@string/advanced_settings_summary">
Tadashi G. Takaoka81d4e3c2012-02-17 17:46:01 -0800115 <CheckBoxPreference
Tadashi G. Takaoka47e2bf32012-07-27 15:32:29 +0900116 android:key="pref_key_use_contacts_dict"
117 android:title="@string/use_contacts_dict"
118 android:summary="@string/use_contacts_dict_summary"
119 android:persistent="true"
120 android:defaultValue="true" />
121 <CheckBoxPreference
Tadashi G. Takaoka1a4aa7e2012-09-20 10:32:56 +0900122 android:key="pref_show_language_switch_key"
123 android:title="@string/show_language_switch_key"
124 android:summary="@string/show_language_switch_key_summary"
Tadashi G. Takaoka81d4e3c2012-02-17 17:46:01 -0800125 android:persistent="true"
Tadashi G. Takaoka1a4aa7e2012-09-20 10:32:56 +0900126 android:defaultValue="true" />
Tadashi G. Takaoka81d4e3c2012-02-17 17:46:01 -0800127 <CheckBoxPreference
128 android:key="pref_include_other_imes_in_language_switch_list"
129 android:title="@string/include_other_imes_in_language_switch_list"
130 android:summary="@string/include_other_imes_in_language_switch_list_summary"
131 android:persistent="true"
132 android:defaultValue="false" />
Tadashi G. Takaokac27fe622012-04-13 16:41:24 +0900133 <PreferenceScreen
134 android:fragment="com.android.inputmethod.latin.AdditionalSubtypeSettings"
135 android:key="custom_input_styles"
136 android:title="@string/custom_input_styles_title" />
satokc9c54a82011-09-14 14:07:10 +0900137 <!-- Values for popup dismiss delay are added programatically -->
138 <ListPreference
139 android:key="pref_key_preview_popup_dismiss_delay"
140 android:title="@string/key_preview_popup_dismiss_delay" />
satok43396572011-09-28 20:11:05 +0900141 <PreferenceScreen
142 android:key="pref_vibration_duration_settings"
satok79c0acf2011-10-11 16:39:11 +0900143 android:title="@string/prefs_keypress_vibration_duration_settings"/>
144 <PreferenceScreen
145 android:key="pref_keypress_sound_volume"
146 android:title="@string/prefs_keypress_sound_volume_settings" />
satokc9c54a82011-09-14 14:07:10 +0900147 </PreferenceScreen>
Satoshi Kataoka8ae8c762012-09-21 15:09:47 +0900148 <PreferenceScreen
149 android:key="debug_settings"
150 android:title="Debug settings"
151 android:persistent="true"
152 android:defaultValue="false" />
Jean Chalardb5059122011-04-22 13:08:35 +0900153 </PreferenceCategory>
satokb1ae5d82011-04-19 21:52:12 -0700154</PreferenceScreen>