blob: 4792c43cfbc594432a73a6795a3b407d40cc655a [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
Mike LeBeau466741d2010-01-16 12:21:23 -080040 <CheckBoxPreference
41 android:key="enable_voice_input"
42 android:title="@string/enable_voice"
43 android:persistent="false"
44 android:defaultValue="@bool/voice_input_default"
45 />
Amith Yamasanib1cd7012010-01-28 07:33:27 -080046
47 <CheckBoxPreference
48 android:key="voice_on_main"
49 android:title="@string/voice_on_primary"
50 android:summary="@string/voice_on_primary_summary"
51 android:persistent="true"
52 android:dependency="enable_voice_input"
53 android:defaultValue="@bool/voice_input_default"
54 />
55
Amith Yamasani36fcf252009-10-12 13:48:35 -070056 <PreferenceScreen
57 android:title="@string/language_selection_title">
58 <intent
59 android:action="android.intent.action.MAIN"
60 android:targetPackage="com.android.inputmethod.latin"
61 android:targetClass="com.android.inputmethod.latin.InputLanguageSelection" />
62 </PreferenceScreen>
63
The Android Open Source Project923bf412009-03-13 15:11:42 -070064 <PreferenceCategory
65 android:title="@string/prediction_category"
66 android:key="prediction_settings">
Amith Yamasani6e3d4272009-03-25 17:39:38 -070067
The Android Open Source Project923bf412009-03-13 15:11:42 -070068 <CheckBoxPreference
Amith Yamasani6e3d4272009-03-25 17:39:38 -070069 android:key="quick_fixes"
70 android:title="@string/quick_fixes"
71 android:summary="@string/quick_fixes_summary"
72 android:persistent="true"
The Android Open Source Project923bf412009-03-13 15:11:42 -070073 android:defaultValue="true"
74 />
75
76 <CheckBoxPreference
Amith Yamasani6e3d4272009-03-25 17:39:38 -070077 android:key="show_suggestions"
78 android:title="@string/show_suggestions"
79 android:summary="@string/show_suggestions_summary"
80 android:persistent="true"
81 android:defaultValue="true"
82 />
83
84 <CheckBoxPreference
85 android:key="auto_complete"
86 android:title="@string/auto_complete"
87 android:summary="@string/auto_complete_summary"
The Android Open Source Project923bf412009-03-13 15:11:42 -070088 android:persistent="true"
Amith Yamasani73f3cd02009-04-13 12:27:25 -070089 android:defaultValue="@bool/enable_autocorrect"
Amith Yamasani6e3d4272009-03-25 17:39:38 -070090 android:dependency="show_suggestions"
The Android Open Source Project923bf412009-03-13 15:11:42 -070091 />
92
93 </PreferenceCategory>
Amith Yamasani6e3d4272009-03-25 17:39:38 -070094</PreferenceScreen>