blob: ebca25089280c9af3dedbd8b009b94ef38096d60 [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">
satokc3f4d552011-07-09 10:14:05 +090024 <PreferenceScreen
25 android:key="subtype_settings"
26 android:title="@string/language_selection_title" />
Jean Chalardce9c4172011-01-19 15:07:14 +090027 <CheckBoxPreference
satok8f9b86f2011-04-01 19:31:30 +090028 android:key="auto_cap"
29 android:title="@string/auto_cap"
30 android:persistent="true"
31 android:defaultValue="true" />
Jean Chalardce9c4172011-01-19 15:07:14 +090032 <CheckBoxPreference
satok8f9b86f2011-04-01 19:31:30 +090033 android:key="vibrate_on"
34 android:title="@string/vibrate_on_keypress"
Ken Wakasa37af28d2011-09-20 20:16:11 +090035 android:defaultValue="@bool/config_default_vibration_enabled"
satok8f9b86f2011-04-01 19:31:30 +090036 android:persistent="true" />
Jean Chalardce9c4172011-01-19 15:07:14 +090037 <CheckBoxPreference
satok8f9b86f2011-04-01 19:31:30 +090038 android:key="sound_on"
39 android:title="@string/sound_on_keypress"
40 android:defaultValue="@bool/config_default_sound_enabled"
41 android:persistent="true" />
Jean Chalardce9c4172011-01-19 15:07:14 +090042 <CheckBoxPreference
satok8f9b86f2011-04-01 19:31:30 +090043 android:key="popup_on"
44 android:title="@string/popup_on_keypress"
45 android:persistent="true"
46 android:defaultValue="@bool/config_default_popup_preview" />
Jean Chalardce9c4172011-01-19 15:07:14 +090047 <ListPreference
satok8f9b86f2011-04-01 19:31:30 +090048 android:key="voice_mode"
49 android:title="@string/voice_input"
50 android:persistent="true"
51 android:entryValues="@array/voice_input_modes_values"
52 android:entries="@array/voice_input_modes"
53 android:defaultValue="@string/voice_mode_main" />
Jean Chalardce9c4172011-01-19 15:07:14 +090054 </PreferenceCategory>
The Android Open Source Project923bf412009-03-13 15:11:42 -070055 <PreferenceCategory
Jean Chalardb5059122011-04-22 13:08:35 +090056 android:title="@string/correction_category"
57 android:key="correction_settings">
Jean Chalard4f3d5d32011-06-24 20:17:38 +090058 <PreferenceScreen
59 android:key="configure_dictionaries_key"
60 android:title="@string/configure_dictionaries_title">
61 <intent
62 android:action="android.intent.action.MAIN"
Jean Chalard4ef448a2011-08-11 21:48:59 +090063 android:targetPackage="@string/dictionary_pack_package_name"
64 android:targetClass="@string/dictionary_pack_settings_activity" />
Jean Chalard4f3d5d32011-06-24 20:17:38 +090065 </PreferenceScreen>
satok7599cfe2010-11-13 19:09:30 +090066 <ListPreference
Tadashi G. Takaoka1b1f7f92010-12-11 17:06:24 +090067 android:key="auto_correction_threshold"
68 android:title="@string/auto_correction"
69 android:summary="@string/auto_correction_summary"
Mitsuhiro Shimodab1abda82010-09-28 12:23:26 +090070 android:persistent="true"
Tadashi G. Takaoka9ecad8c2010-12-13 12:37:23 +090071 android:entryValues="@array/auto_correction_threshold_mode_indexes"
Tadashi G. Takaoka1b1f7f92010-12-11 17:06:24 +090072 android:entries="@array/auto_correction_threshold_modes"
satok8f9b86f2011-04-01 19:31:30 +090073 android:defaultValue="@string/auto_correction_threshold_mode_index_modest" />
Jean Chalard89764ad2011-01-19 17:44:39 +090074 <ListPreference
75 android:key="show_suggestions_setting"
76 android:summary="@string/prefs_show_suggestions_summary"
77 android:title="@string/prefs_show_suggestions"
78 android:persistent="true"
79 android:entryValues="@array/prefs_suggestion_visibility_values"
80 android:entries="@array/prefs_suggestion_visibilities"
satok8f9b86f2011-04-01 19:31:30 +090081 android:defaultValue="@string/prefs_suggestion_visibility_default_value" />
Jean Chalardb5059122011-04-22 13:08:35 +090082 </PreferenceCategory>
83 <PreferenceCategory
Jean Chalardb5059122011-04-22 13:08:35 +090084 android:title="@string/misc_category"
85 android:key="misc_settings">
satokc9c54a82011-09-14 14:07:10 +090086 <CheckBoxPreference
87 android:key="usability_study_mode"
88 android:title="@string/prefs_usability_study_mode"
89 android:persistent="true"
90 android:defaultValue="false" />
91 <PreferenceScreen
92 android:key="pref_advanced_settings"
93 android:title="@string/advanced_settings"
94 android:summary="@string/advanced_settings_summary">
Tadashi G. Takaoka81d4e3c2012-02-17 17:46:01 -080095 <CheckBoxPreference
96 android:key="pref_suppress_language_switch_key"
97 android:title="@string/suppress_language_switch_key"
98 android:persistent="true"
99 android:defaultValue="false" />
100 <CheckBoxPreference
101 android:key="pref_include_other_imes_in_language_switch_list"
102 android:title="@string/include_other_imes_in_language_switch_list"
103 android:summary="@string/include_other_imes_in_language_switch_list_summary"
104 android:persistent="true"
105 android:defaultValue="false" />
satokc9c54a82011-09-14 14:07:10 +0900106 <!-- Values for popup dismiss delay are added programatically -->
107 <ListPreference
108 android:key="pref_key_preview_popup_dismiss_delay"
109 android:title="@string/key_preview_popup_dismiss_delay" />
110 <CheckBoxPreference
111 android:key="pref_key_use_contacts_dict"
112 android:title="@string/use_contacts_dict"
113 android:summary="@string/use_contacts_dict_summary"
114 android:persistent="true"
115 android:defaultValue="true" />
116 <CheckBoxPreference
117 android:key="bigram_suggestion"
118 android:title="@string/bigram_suggestion"
119 android:summary="@string/bigram_suggestion_summary"
120 android:persistent="true"
121 android:defaultValue="true" />
122 <CheckBoxPreference
Jean Chalarda252e052012-02-15 19:25:12 -0800123 android:key="bigram_prediction"
124 android:dependency="bigram_suggestion"
125 android:title="@string/bigram_prediction"
126 android:summary="@string/bigram_prediction_summary"
127 android:persistent="true"
128 android:defaultValue="false" />
129 <CheckBoxPreference
satokc9c54a82011-09-14 14:07:10 +0900130 android:key="enable_span_insert"
131 android:title="@string/enable_span_insert"
132 android:summary="@string/enable_span_insert_summary"
133 android:persistent="true"
134 android:defaultValue="true" />
satok43396572011-09-28 20:11:05 +0900135 <PreferenceScreen
136 android:key="pref_vibration_duration_settings"
satok79c0acf2011-10-11 16:39:11 +0900137 android:title="@string/prefs_keypress_vibration_duration_settings"/>
138 <PreferenceScreen
139 android:key="pref_keypress_sound_volume"
140 android:title="@string/prefs_keypress_sound_volume_settings" />
satokc9c54a82011-09-14 14:07:10 +0900141 </PreferenceScreen>
Jean Chalardb5059122011-04-22 13:08:35 +0900142 </PreferenceCategory>
satokb1ae5d82011-04-19 21:52:12 -0700143</PreferenceScreen>