blob: 1721384f1eccc0d91094658e724307315a92e391 [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"
24 android:defaultValue="true"
25 android:persistent="true"
26 />
27
28 <CheckBoxPreference
29 android:key="sound_on"
30 android:title="@string/sound_on_keypress"
31 android:persistent="true"
32 />
33
34 <CheckBoxPreference
35 android:key="auto_cap"
36 android:title="@string/auto_cap"
37 android:persistent="true"
38 android:defaultValue="true"
39 />
40
41 <!--CheckBoxPreference
42 android:key="auto_punctuate"
43 android:title="@string/auto_punctuate"
44 android:persistent="true"
45 android:defaultValue="true"
46 android:visible="false"
47 /-->
48
49 <ListPreference
50 android:key="prediction_mode"
51 android:title="@string/prediction"
52 android:dialogTitle="@string/auto_complete_dialog_title"
53 android:summary="@string/prediction_summary"
54 android:persistent="true"
55 android:entries="@array/prediction_modes"
56 android:entryValues="@array/prediction_modes_values"
57 android:defaultValue="@string/prediction_basic"
58 />
59
60 <PreferenceCategory
61 android:title="@string/prediction_category"
62 android:key="prediction_settings">
63
64 <CheckBoxPreference
65 android:key="hit_correction"
66 android:title="@string/hit_correction"
67 android:summary="@string/hit_correction_summary"
68 android:persistent="true"
69 android:defaultValue="true"
70 />
71
72 <CheckBoxPreference
73 android:key="prediction_landscape"
74 android:title="@string/prediction_landscape"
75 android:summary="@string/prediction_landscape_summary"
76 android:persistent="true"
77 android:defaultValue="false"
78 />
79
80 </PreferenceCategory>
81</PreferenceScreen>