The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 1 | <?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 Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 24 | 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 | |
Amith Yamasani | 457fdff | 2010-02-09 14:17:30 -0800 | [diff] [blame^] | 40 | <ListPreference |
| 41 | android:key="voice_mode" |
| 42 | android:title="@string/voice_input" |
Amith Yamasani | b1cd701 | 2010-01-28 07:33:27 -0800 | [diff] [blame] | 43 | android:persistent="true" |
Amith Yamasani | 457fdff | 2010-02-09 14:17:30 -0800 | [diff] [blame^] | 44 | android:entryValues="@array/voice_input_modes_values" |
| 45 | android:entries="@array/voice_input_modes" |
| 46 | android:defaultValue="@string/voice_mode_main" |
Amith Yamasani | b1cd701 | 2010-01-28 07:33:27 -0800 | [diff] [blame] | 47 | /> |
| 48 | |
Amith Yamasani | 36fcf25 | 2009-10-12 13:48:35 -0700 | [diff] [blame] | 49 | <PreferenceScreen |
Amith Yamasani | 457fdff | 2010-02-09 14:17:30 -0800 | [diff] [blame^] | 50 | android:title="@string/language_selection_title" |
| 51 | android:summary="@string/language_selection_summary"> |
Amith Yamasani | 36fcf25 | 2009-10-12 13:48:35 -0700 | [diff] [blame] | 52 | <intent |
| 53 | android:action="android.intent.action.MAIN" |
| 54 | android:targetPackage="com.android.inputmethod.latin" |
| 55 | android:targetClass="com.android.inputmethod.latin.InputLanguageSelection" /> |
| 56 | </PreferenceScreen> |
| 57 | |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 58 | <PreferenceCategory |
| 59 | android:title="@string/prediction_category" |
| 60 | android:key="prediction_settings"> |
Amith Yamasani | 6e3d427 | 2009-03-25 17:39:38 -0700 | [diff] [blame] | 61 | |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 62 | <CheckBoxPreference |
Amith Yamasani | 6e3d427 | 2009-03-25 17:39:38 -0700 | [diff] [blame] | 63 | android:key="quick_fixes" |
| 64 | android:title="@string/quick_fixes" |
| 65 | android:summary="@string/quick_fixes_summary" |
| 66 | android:persistent="true" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 67 | android:defaultValue="true" |
| 68 | /> |
| 69 | |
| 70 | <CheckBoxPreference |
Amith Yamasani | 6e3d427 | 2009-03-25 17:39:38 -0700 | [diff] [blame] | 71 | android:key="show_suggestions" |
| 72 | android:title="@string/show_suggestions" |
| 73 | android:summary="@string/show_suggestions_summary" |
| 74 | android:persistent="true" |
| 75 | android:defaultValue="true" |
| 76 | /> |
| 77 | |
| 78 | <CheckBoxPreference |
| 79 | android:key="auto_complete" |
| 80 | android:title="@string/auto_complete" |
| 81 | android:summary="@string/auto_complete_summary" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 82 | android:persistent="true" |
Amith Yamasani | 73f3cd0 | 2009-04-13 12:27:25 -0700 | [diff] [blame] | 83 | android:defaultValue="@bool/enable_autocorrect" |
Amith Yamasani | 6e3d427 | 2009-03-25 17:39:38 -0700 | [diff] [blame] | 84 | android:dependency="show_suggestions" |
The Android Open Source Project | 923bf41 | 2009-03-13 15:11:42 -0700 | [diff] [blame] | 85 | /> |
| 86 | |
| 87 | </PreferenceCategory> |
Amith Yamasani | 6e3d427 | 2009-03-25 17:39:38 -0700 | [diff] [blame] | 88 | </PreferenceScreen> |