blob: 9ea801ef79c3be4f1a334e712c4f5c5f99fb0e40 [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"
41 android:persistent="true"
42 />
Yohei Fujii0b0a6862010-08-11 20:50:20 +090043
Jean Chalardce9c4172011-01-19 15:07:14 +090044 <CheckBoxPreference
45 android:key="popup_on"
46 android:title="@string/popup_on_keypress"
47 android:persistent="true"
48 android:defaultValue="@bool/config_default_popup_preview"
49 />
satok66b42a12010-09-06 19:18:38 +090050
Jean Chalardce9c4172011-01-19 15:07:14 +090051 <CheckBoxPreference
52 android:key="recorrection_enabled"
53 android:title="@string/prefs_enable_recorrection"
54 android:summary="@string/prefs_enable_recorrection_summary"
55 android:persistent="true"
56 android:defaultValue="@bool/default_recorrection_enabled"
57 />
Ken Wakasa1508c0e2010-09-15 13:37:52 +090058
Jean Chalardce9c4172011-01-19 15:07:14 +090059 <ListPreference
60 android:key="settings_key"
61 android:title="@string/prefs_settings_key"
62 android:persistent="true"
63 android:entryValues="@array/settings_key_modes_values"
64 android:entries="@array/settings_key_modes"
65 android:defaultValue="@string/settings_key_mode_auto"
66 />
Amith Yamasanib1cd7012010-01-28 07:33:27 -080067
Jean Chalardce9c4172011-01-19 15:07:14 +090068 <ListPreference
69 android:key="voice_mode"
70 android:title="@string/voice_input"
71 android:persistent="true"
72 android:entryValues="@array/voice_input_modes_values"
73 android:entries="@array/voice_input_modes"
74 android:defaultValue="@string/voice_mode_main"
75 />
76
77 <PreferenceScreen
78 android:key="subtype_settings"
79 android:title="@string/language_selection_title"
80 android:summary="@string/language_selection_summary" />
81
82 </PreferenceCategory>
Amith Yamasani36fcf252009-10-12 13:48:35 -070083
The Android Open Source Project923bf412009-03-13 15:11:42 -070084 <PreferenceCategory
85 android:title="@string/prediction_category"
86 android:key="prediction_settings">
Amith Yamasani6e3d4272009-03-25 17:39:38 -070087
The Android Open Source Project923bf412009-03-13 15:11:42 -070088 <CheckBoxPreference
Amith Yamasani6e3d4272009-03-25 17:39:38 -070089 android:key="quick_fixes"
90 android:title="@string/quick_fixes"
91 android:summary="@string/quick_fixes_summary"
92 android:persistent="true"
The Android Open Source Project923bf412009-03-13 15:11:42 -070093 android:defaultValue="true"
94 />
95
satok7599cfe2010-11-13 19:09:30 +090096 <ListPreference
Tadashi G. Takaoka1b1f7f92010-12-11 17:06:24 +090097 android:key="auto_correction_threshold"
98 android:title="@string/auto_correction"
99 android:summary="@string/auto_correction_summary"
Mitsuhiro Shimodab1abda82010-09-28 12:23:26 +0900100 android:persistent="true"
Tadashi G. Takaoka9ecad8c2010-12-13 12:37:23 +0900101 android:entryValues="@array/auto_correction_threshold_mode_indexes"
Tadashi G. Takaoka1b1f7f92010-12-11 17:06:24 +0900102 android:entries="@array/auto_correction_threshold_modes"
Tadashi G. Takaoka9ecad8c2010-12-13 12:37:23 +0900103 android:defaultValue="@string/auto_correction_threshold_mode_index_modest"
The Android Open Source Project923bf412009-03-13 15:11:42 -0700104 />
satok01303e32010-05-19 14:03:00 +0900105
Jean Chalard89764ad2011-01-19 17:44:39 +0900106 <ListPreference
107 android:key="show_suggestions_setting"
108 android:summary="@string/prefs_show_suggestions_summary"
109 android:title="@string/prefs_show_suggestions"
110 android:persistent="true"
111 android:entryValues="@array/prefs_suggestion_visibility_values"
112 android:entries="@array/prefs_suggestion_visibilities"
113 android:defaultValue="@string/prefs_suggestion_visibility_default_value"
114 />
115
Jae Yong Sung937d5ad2010-06-30 20:28:04 -0700116 <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"
Jae Yong Sung937d5ad2010-06-30 20:28:04 -0700122 />
satok95175d42010-11-16 07:48:04 +0900123 </PreferenceCategory>
124
125 <CheckBoxPreference
126 android:key="usability_study_mode"
127 android:title="@string/prefs_usability_study_mode"
128 android:persistent="true"
129 android:defaultValue="false"
130 />
satokb9c57e62010-07-16 13:02:45 +0900131
Amith Yamasani6e3d4272009-03-25 17:39:38 -0700132</PreferenceScreen>