1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2010 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 18 xmlns:android="http://schemas.android.com/apk/res/android" 19 xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin" 20 android:title="@string/prefs_debug_mode" 21 android:key="english_ime_debug_settings" 22> 23 <CheckBoxPreference 24 android:key="debug_mode" 25 android:title="@string/prefs_debug_mode" 26 android:defaultValue="false" 27 android:persistent="true" /> 28 <CheckBoxPreference 29 android:key="force_non_distinct_multitouch" 30 android:title="@string/prefs_force_non_distinct_multitouch" 31 android:defaultValue="false" 32 android:persistent="true" /> 33 <CheckBoxPreference 34 android:key="pref_should_show_lxx_suggestion_ui" 35 android:title="@string/prefs_should_show_lxx_suggestion_ui" 36 android:defaultValue="true" 37 android:persistent="true" /> 38 <CheckBoxPreference 39 android:key="pref_sliding_key_input_preview" 40 android:title="@string/sliding_key_input_preview" 41 android:summary="@string/sliding_key_input_preview_summary" 42 android:defaultValue="true" 43 android:persistent="true" /> 44 <CheckBoxPreference 45 android:key="pref_has_custom_key_preview_animation_params" 46 android:title="@string/prefs_customize_key_preview_animation" 47 android:defaultValue="false" 48 android:persistent="true" /> 49 <com.android.inputmethod.latin.settings.SeekBarDialogPreference 50 android:dependency="pref_has_custom_key_preview_animation_params" 51 android:key="pref_key_preview_show_up_start_x_scale" 52 android:title="@string/prefs_key_popup_show_up_start_x_scale_settings" 53 latin:maxValue="100" /> <!-- percent --> 54 <com.android.inputmethod.latin.settings.SeekBarDialogPreference 55 android:dependency="pref_has_custom_key_preview_animation_params" 56 android:key="pref_key_preview_show_up_start_y_scale" 57 android:title="@string/prefs_key_popup_show_up_start_y_scale_settings" 58 latin:maxValue="100" /> <!-- percent --> 59 <com.android.inputmethod.latin.settings.SeekBarDialogPreference 60 android:dependency="pref_has_custom_key_preview_animation_params" 61 android:key="pref_key_preview_dismiss_end_x_scale" 62 android:title="@string/prefs_key_popup_dismiss_end_x_scale_settings" 63 latin:maxValue="100" /> <!-- percent --> 64 <com.android.inputmethod.latin.settings.SeekBarDialogPreference 65 android:dependency="pref_has_custom_key_preview_animation_params" 66 android:key="pref_key_preview_dismiss_end_y_scale" 67 android:title="@string/prefs_key_popup_dismiss_end_y_scale_settings" 68 latin:maxValue="100" /> <!-- percent --> 69 <com.android.inputmethod.latin.settings.SeekBarDialogPreference 70 android:dependency="pref_has_custom_key_preview_animation_params" 71 android:key="pref_key_preview_show_up_duration" 72 android:title="@string/prefs_key_popup_show_up_duration_settings" 73 latin:maxValue="100" /> <!-- milliseconds --> 74 <com.android.inputmethod.latin.settings.SeekBarDialogPreference 75 android:dependency="pref_has_custom_key_preview_animation_params" 76 android:key="pref_key_preview_dismiss_duration" 77 android:title="@string/prefs_key_popup_dismiss_duration_settings" 78 latin:maxValue="100" /> <!-- milliseconds --> 79 <CheckBoxPreference 80 android:key="pref_resize_keyboard" 81 android:title="@string/prefs_resize_keyboard" 82 android:defaultValue="false" 83 android:persistent="true" /> 84 <com.android.inputmethod.latin.settings.SeekBarDialogPreference 85 android:dependency="pref_resize_keyboard" 86 android:key="pref_keyboard_height_scale" 87 android:title="@string/prefs_keyboard_height_scale" 88 latin:minValue="50" 89 latin:maxValue="120" /> <!-- percentage --> 90 <PreferenceCategory 91 android:key="pref_key_dump_dictionaries" 92 android:title="@string/prefs_dump_dynamic_dicts"> 93 </PreferenceCategory> 94</PreferenceScreen> 95