2009-03-13 22:11:42 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Copyright (C) 2008 The Android Open Source Project
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
2011-01-19 06:07:14 +00:00
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2011-01-19 06:07:14 +00:00
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:title="@string/english_ime_settings"
|
|
|
|
android:key="english_ime_settings">
|
|
|
|
|
2011-01-19 06:07:14 +00:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/general_category"
|
|
|
|
android:key="general_settings">
|
2011-01-18 08:45:22 +00:00
|
|
|
|
2011-01-19 06:07:14 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="auto_cap"
|
|
|
|
android:title="@string/auto_cap"
|
|
|
|
android:persistent="true"
|
|
|
|
android:defaultValue="true"
|
|
|
|
/>
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2011-01-19 06:07:14 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="vibrate_on"
|
|
|
|
android:title="@string/vibrate_on_keypress"
|
|
|
|
android:persistent="true"
|
|
|
|
/>
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2011-01-19 06:07:14 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="sound_on"
|
|
|
|
android:title="@string/sound_on_keypress"
|
2011-02-08 02:13:06 +00:00
|
|
|
android:defaultValue="@bool/config_default_sound_enabled"
|
2011-01-19 06:07:14 +00:00
|
|
|
android:persistent="true"
|
|
|
|
/>
|
2010-08-11 11:50:20 +00:00
|
|
|
|
2011-01-19 06:07:14 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="popup_on"
|
|
|
|
android:title="@string/popup_on_keypress"
|
|
|
|
android:persistent="true"
|
|
|
|
android:defaultValue="@bool/config_default_popup_preview"
|
|
|
|
/>
|
2010-09-06 10:18:38 +00:00
|
|
|
|
2011-01-19 06:07:14 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="recorrection_enabled"
|
|
|
|
android:title="@string/prefs_enable_recorrection"
|
|
|
|
android:summary="@string/prefs_enable_recorrection_summary"
|
|
|
|
android:persistent="true"
|
2011-02-08 02:13:06 +00:00
|
|
|
android:defaultValue="@bool/config_default_recorrection_enabled"
|
2011-01-19 06:07:14 +00:00
|
|
|
/>
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2011-01-19 06:07:14 +00:00
|
|
|
<ListPreference
|
|
|
|
android:key="settings_key"
|
|
|
|
android:title="@string/prefs_settings_key"
|
|
|
|
android:persistent="true"
|
|
|
|
android:entryValues="@array/settings_key_modes_values"
|
|
|
|
android:entries="@array/settings_key_modes"
|
|
|
|
android:defaultValue="@string/settings_key_mode_auto"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:key="voice_mode"
|
|
|
|
android:title="@string/voice_input"
|
|
|
|
android:persistent="true"
|
|
|
|
android:entryValues="@array/voice_input_modes_values"
|
|
|
|
android:entries="@array/voice_input_modes"
|
|
|
|
android:defaultValue="@string/voice_mode_main"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="subtype_settings"
|
|
|
|
android:title="@string/language_selection_title"
|
|
|
|
android:summary="@string/language_selection_summary" />
|
2010-01-28 15:33:27 +00:00
|
|
|
|
2011-01-19 06:07:14 +00:00
|
|
|
</PreferenceCategory>
|
2009-10-12 20:48:35 +00:00
|
|
|
|
2009-03-26 00:39:38 +00:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/prediction_category"
|
|
|
|
android:key="prediction_settings">
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="quick_fixes"
|
|
|
|
android:title="@string/quick_fixes"
|
|
|
|
android:summary="@string/quick_fixes_summary"
|
2009-03-13 22:11:42 +00:00
|
|
|
android:persistent="true"
|
|
|
|
android:defaultValue="true"
|
|
|
|
/>
|
|
|
|
|
2010-09-28 03:23:26 +00:00
|
|
|
<ListPreference
|
2010-12-11 08:06:24 +00:00
|
|
|
android:key="auto_correction_threshold"
|
|
|
|
android:title="@string/auto_correction"
|
|
|
|
android:summary="@string/auto_correction_summary"
|
2010-09-28 03:23:26 +00:00
|
|
|
android:persistent="true"
|
2010-12-13 03:37:23 +00:00
|
|
|
android:entryValues="@array/auto_correction_threshold_mode_indexes"
|
2010-12-11 08:06:24 +00:00
|
|
|
android:entries="@array/auto_correction_threshold_modes"
|
2010-12-13 03:37:23 +00:00
|
|
|
android:defaultValue="@string/auto_correction_threshold_mode_index_modest"
|
2009-03-13 22:11:42 +00:00
|
|
|
/>
|
2010-05-19 05:03:00 +00:00
|
|
|
|
2011-01-19 08:44:39 +00:00
|
|
|
<ListPreference
|
|
|
|
android:key="show_suggestions_setting"
|
|
|
|
android:summary="@string/prefs_show_suggestions_summary"
|
|
|
|
android:title="@string/prefs_show_suggestions"
|
|
|
|
android:persistent="true"
|
|
|
|
android:entryValues="@array/prefs_suggestion_visibility_values"
|
|
|
|
android:entries="@array/prefs_suggestion_visibilities"
|
|
|
|
android:defaultValue="@string/prefs_suggestion_visibility_default_value"
|
|
|
|
/>
|
|
|
|
|
2010-07-01 03:28:04 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="bigram_suggestion"
|
|
|
|
android:title="@string/bigram_suggestion"
|
|
|
|
android:summary="@string/bigram_suggestion_summary"
|
|
|
|
android:persistent="true"
|
|
|
|
android:defaultValue="true"
|
|
|
|
/>
|
2010-11-15 22:48:04 +00:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="usability_study_mode"
|
|
|
|
android:title="@string/prefs_usability_study_mode"
|
|
|
|
android:persistent="true"
|
|
|
|
android:defaultValue="false"
|
|
|
|
/>
|
2010-07-16 04:02:45 +00:00
|
|
|
|
2009-03-26 00:39:38 +00:00
|
|
|
</PreferenceScreen>
|