blob: 037d5ff77fd889ca210b7ce08d2d25f079cf10da [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
40 <!--CheckBoxPreference
41 android:key="auto_punctuate"
42 android:title="@string/auto_punctuate"
43 android:persistent="true"
44 android:defaultValue="true"
45 android:visible="false"
46 /-->
47
48 <ListPreference
49 android:key="prediction_mode"
50 android:title="@string/prediction"
51 android:dialogTitle="@string/auto_complete_dialog_title"
52 android:summary="@string/prediction_summary"
53 android:persistent="true"
54 android:entries="@array/prediction_modes"
55 android:entryValues="@array/prediction_modes_values"
56 android:defaultValue="@string/prediction_basic"
57 />
58
59 <PreferenceCategory
60 android:title="@string/prediction_category"
61 android:key="prediction_settings">
62
63 <CheckBoxPreference
64 android:key="hit_correction"
65 android:title="@string/hit_correction"
66 android:summary="@string/hit_correction_summary"
67 android:persistent="true"
68 android:defaultValue="true"
69 />
70
71 <CheckBoxPreference
72 android:key="prediction_landscape"
73 android:title="@string/prediction_landscape"
74 android:summary="@string/prediction_landscape_summary"
75 android:persistent="true"
76 android:defaultValue="false"
77 />
78
79 </PreferenceCategory>
80</PreferenceScreen>