Home | History | Annotate | Download | only in xml
      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="force_physical_keyboard_special_key"
     35         android:title="@string/prefs_force_physical_keyboard_special_key"
     36         android:defaultValue="false"
     37         android:persistent="true" />
     38     <CheckBoxPreference
     39         android:key="pref_show_ui_to_accept_typed_word"
     40         android:title="@string/prefs_show_ui_to_accept_typed_word"
     41         android:defaultValue="true"
     42         android:persistent="true" />
     43     <CheckBoxPreference
     44         android:key="pref_sliding_key_input_preview"
     45         android:title="@string/sliding_key_input_preview"
     46         android:summary="@string/sliding_key_input_preview_summary"
     47         android:defaultValue="true"
     48         android:persistent="true" />
     49     <com.android.inputmethod.latin.settings.SeekBarDialogPreference
     50         android:key="pref_key_longpress_timeout"
     51         android:title="@string/prefs_key_longpress_timeout_settings"
     52         latin:minValue="@integer/config_min_longpress_timeout"
     53         latin:maxValue="@integer/config_max_longpress_timeout"
     54         latin:stepValue="@integer/config_longpress_timeout_step" />
     55     <CheckBoxPreference
     56         android:key="pref_has_custom_key_preview_animation_params"
     57         android:title="@string/prefs_customize_key_preview_animation"
     58         android:defaultValue="false"
     59         android:persistent="true" />
     60     <com.android.inputmethod.latin.settings.SeekBarDialogPreference
     61         android:dependency="pref_has_custom_key_preview_animation_params"
     62         android:key="pref_key_preview_show_up_start_x_scale"
     63         android:title="@string/prefs_key_popup_show_up_start_x_scale_settings"
     64         latin:maxValue="100" /> <!-- percent -->
     65     <com.android.inputmethod.latin.settings.SeekBarDialogPreference
     66         android:dependency="pref_has_custom_key_preview_animation_params"
     67         android:key="pref_key_preview_show_up_start_y_scale"
     68         android:title="@string/prefs_key_popup_show_up_start_y_scale_settings"
     69         latin:maxValue="100" /> <!-- percent -->
     70     <com.android.inputmethod.latin.settings.SeekBarDialogPreference
     71         android:dependency="pref_has_custom_key_preview_animation_params"
     72         android:key="pref_key_preview_dismiss_end_x_scale"
     73         android:title="@string/prefs_key_popup_dismiss_end_x_scale_settings"
     74         latin:maxValue="100" /> <!-- percent -->
     75     <com.android.inputmethod.latin.settings.SeekBarDialogPreference
     76         android:dependency="pref_has_custom_key_preview_animation_params"
     77         android:key="pref_key_preview_dismiss_end_y_scale"
     78         android:title="@string/prefs_key_popup_dismiss_end_y_scale_settings"
     79         latin:maxValue="100" /> <!-- percent -->
     80     <com.android.inputmethod.latin.settings.SeekBarDialogPreference
     81         android:dependency="pref_has_custom_key_preview_animation_params"
     82         android:key="pref_key_preview_show_up_duration"
     83         android:title="@string/prefs_key_popup_show_up_duration_settings"
     84         latin:maxValue="100" /> <!-- milliseconds -->
     85     <com.android.inputmethod.latin.settings.SeekBarDialogPreference
     86         android:dependency="pref_has_custom_key_preview_animation_params"
     87         android:key="pref_key_preview_dismiss_duration"
     88         android:title="@string/prefs_key_popup_dismiss_duration_settings"
     89         latin:maxValue="100" /> <!-- milliseconds -->
     90     <PreferenceScreen
     91         android:key="read_external_dictionary"
     92         android:title="@string/prefs_read_external_dictionary" />
     93     <PreferenceCategory
     94         android:key="pref_key_dump_dictionaries"
     95         android:title="@string/prefs_dump_dynamic_dicts">
     96     </PreferenceCategory>
     97 </PreferenceScreen>
     98