blob: d031415d7c26a10c1516f4d2fde580946cc48c0e [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
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 Chalardce9c4172011-01-19 15:07:14 +090021 <PreferenceCategory
22 android:title="@string/general_category"
23 android:key="general_settings">
Jean Chalardfd7d8142011-01-18 17:45:22 +090024
Jean Chalardce9c4172011-01-19 15:07:14 +090025 <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 Project923bf412009-03-13 15:11:42 -070031
Jean Chalardce9c4172011-01-19 15:07:14 +090032 <CheckBoxPreference
33 android:key="vibrate_on"
34 android:title="@string/vibrate_on_keypress"
35 android:persistent="true"
36 />
The Android Open Source Project923bf412009-03-13 15:11:42 -070037
Jean Chalardce9c4172011-01-19 15:07:14 +090038 <CheckBoxPreference
39 android:key="sound_on"
40 android:title="@string/sound_on_keypress"
Jean Chalardf0d99b82011-02-08 11:13:06 +090041 android:defaultValue="@bool/config_default_sound_enabled"
Jean Chalardce9c4172011-01-19 15:07:14 +090042 android:persistent="true"
43 />
Yohei Fujii0b0a6862010-08-11 20:50:20 +090044
Jean Chalardce9c4172011-01-19 15:07:14 +090045 <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 />
satok66b42a12010-09-06 19:18:38 +090051
Jean Chalardce9c4172011-01-19 15:07:14 +090052 <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 Chalardf0d99b82011-02-08 11:13:06 +090057 android:defaultValue="@bool/config_default_recorrection_enabled"
Jean Chalardce9c4172011-01-19 15:07:14 +090058 />
Ken Wakasa1508c0e2010-09-15 13:37:52 +090059
Jean Chalardce9c4172011-01-19 15:07:14 +090060 <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 Yamasanib1cd7012010-01-28 07:33:27 -080068
Jean Chalardce9c4172011-01-19 15:07:14 +090069 <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 Yamasani36fcf252009-10-12 13:48:35 -070084
The Android Open Source Project923bf412009-03-13 15:11:42 -070085 <PreferenceCategory
86 android:title="@string/prediction_category"
87 android:key="prediction_settings">
Amith Yamasani6e3d4272009-03-25 17:39:38 -070088
The Android Open Source Project923bf412009-03-13 15:11:42 -070089 <CheckBoxPreference
Amith Yamasani6e3d4272009-03-25 17:39:38 -070090 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 Project923bf412009-03-13 15:11:42 -070094 android:defaultValue="true"
95 />
96
satok7599cfe2010-11-13 19:09:30 +090097 <ListPreference
Tadashi G. Takaoka1b1f7f92010-12-11 17:06:24 +090098 android:key="auto_correction_threshold"
99 android:title="@string/auto_correction"
100 android:summary="@string/auto_correction_summary"
Mitsuhiro Shimodab1abda82010-09-28 12:23:26 +0900101 android:persistent="true"
Tadashi G. Takaoka9ecad8c2010-12-13 12:37:23 +0900102 android:entryValues="@array/auto_correction_threshold_mode_indexes"
Tadashi G. Takaoka1b1f7f92010-12-11 17:06:24 +0900103 android:entries="@array/auto_correction_threshold_modes"
Tadashi G. Takaoka9ecad8c2010-12-13 12:37:23 +0900104 android:defaultValue="@string/auto_correction_threshold_mode_index_modest"
The Android Open Source Project923bf412009-03-13 15:11:42 -0700105 />
satok01303e32010-05-19 14:03:00 +0900106
Jean Chalard89764ad2011-01-19 17:44:39 +0900107 <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 Sung937d5ad2010-06-30 20:28:04 -0700117 <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 Sung937d5ad2010-06-30 20:28:04 -0700123 />
satok95175d42010-11-16 07:48:04 +0900124 </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 />
satokb9c57e62010-07-16 13:02:45 +0900132
Amith Yamasani6e3d4272009-03-25 17:39:38 -0700133</PreferenceScreen>