blob: 12a1ed305becde7c4747468a8320d385e66715b1 [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
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
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
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
21 <CheckBoxPreference
22 android:key="vibrate_on"
23 android:title="@string/vibrate_on_keypress"
The Android Open Source Project923bf412009-03-13 15:11:42 -070024 android:persistent="true"
25 />
26
27 <CheckBoxPreference
28 android:key="sound_on"
29 android:title="@string/sound_on_keypress"
30 android:persistent="true"
31 />
32
33 <CheckBoxPreference
34 android:key="auto_cap"
35 android:title="@string/auto_cap"
36 android:persistent="true"
37 android:defaultValue="true"
38 />
39
satokee2ab402010-05-10 18:43:50 +090040 <CheckBoxPreference
satok01303e32010-05-19 14:03:00 +090041 android:key="enable_logging"
satokee2ab402010-05-10 18:43:50 +090042 android:title="@string/prefs_enable_log"
43 android:summary="@string/prefs_description_log"
44 android:persistent="true"
satok01303e32010-05-19 14:03:00 +090045 android:defaultValue="true"
satokee2ab402010-05-10 18:43:50 +090046 />
47
Amith Yamasani457fdff2010-02-09 14:17:30 -080048 <ListPreference
49 android:key="voice_mode"
50 android:title="@string/voice_input"
Amith Yamasanib1cd7012010-01-28 07:33:27 -080051 android:persistent="true"
Amith Yamasani457fdff2010-02-09 14:17:30 -080052 android:entryValues="@array/voice_input_modes_values"
53 android:entries="@array/voice_input_modes"
54 android:defaultValue="@string/voice_mode_main"
Amith Yamasanib1cd7012010-01-28 07:33:27 -080055 />
56
satoka0f87392010-05-14 22:20:13 +090057 <ListPreference
58 android:key="keyboard_layout"
59 android:title="@string/keyboard_layout"
60 android:persistent="true"
61 android:entryValues="@array/keyboard_layout_modes_values"
62 android:entries="@array/keyboard_layout_modes"
satok6c20ab52010-06-29 05:32:48 +090063 android:defaultValue="3"
satoka0f87392010-05-14 22:20:13 +090064 />
65
Amith Yamasani36fcf252009-10-12 13:48:35 -070066 <PreferenceScreen
Amith Yamasani457fdff2010-02-09 14:17:30 -080067 android:title="@string/language_selection_title"
68 android:summary="@string/language_selection_summary">
Amith Yamasani36fcf252009-10-12 13:48:35 -070069 <intent
Amith Yamasani07b16032010-03-09 12:46:57 -080070 android:action="com.android.inputmethod.latin.INPUT_LANGUAGE_SELECTION"/>
Amith Yamasani36fcf252009-10-12 13:48:35 -070071 </PreferenceScreen>
72
The Android Open Source Project923bf412009-03-13 15:11:42 -070073 <PreferenceCategory
74 android:title="@string/prediction_category"
75 android:key="prediction_settings">
Amith Yamasani6e3d4272009-03-25 17:39:38 -070076
The Android Open Source Project923bf412009-03-13 15:11:42 -070077 <CheckBoxPreference
Amith Yamasani6e3d4272009-03-25 17:39:38 -070078 android:key="quick_fixes"
79 android:title="@string/quick_fixes"
80 android:summary="@string/quick_fixes_summary"
81 android:persistent="true"
The Android Open Source Project923bf412009-03-13 15:11:42 -070082 android:defaultValue="true"
83 />
84
85 <CheckBoxPreference
Amith Yamasani6e3d4272009-03-25 17:39:38 -070086 android:key="show_suggestions"
87 android:title="@string/show_suggestions"
88 android:summary="@string/show_suggestions_summary"
89 android:persistent="true"
90 android:defaultValue="true"
91 />
92
93 <CheckBoxPreference
94 android:key="auto_complete"
95 android:title="@string/auto_complete"
96 android:summary="@string/auto_complete_summary"
The Android Open Source Project923bf412009-03-13 15:11:42 -070097 android:persistent="true"
Amith Yamasani73f3cd02009-04-13 12:27:25 -070098 android:defaultValue="@bool/enable_autocorrect"
Amith Yamasani6e3d4272009-03-25 17:39:38 -070099 android:dependency="show_suggestions"
The Android Open Source Project923bf412009-03-13 15:11:42 -0700100 />
satok01303e32010-05-19 14:03:00 +0900101
Jae Yong Sung937d5ad2010-06-30 20:28:04 -0700102 <CheckBoxPreference
103 android:key="bigram_suggestion"
104 android:title="@string/bigram_suggestion"
105 android:summary="@string/bigram_suggestion_summary"
106 android:persistent="true"
107 android:defaultValue="true"
108 android:dependency="auto_complete"
109 />
The Android Open Source Project923bf412009-03-13 15:11:42 -0700110 </PreferenceCategory>
satokb9c57e62010-07-16 13:02:45 +0900111
112<CheckBoxPreference
satok01303e32010-05-19 14:03:00 +0900113 android:key="debug_mode"
114 android:title="@string/prefs_debug_mode"
115 android:persistent="true"
116 android:defaultValue="false"
117 />
Amith Yamasani6e3d4272009-03-25 17:39:38 -0700118</PreferenceScreen>