prefs_screen_debug.xml revision c225d2e29cfd85fb416952daa4bcebd4df48b57c
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    <com.android.inputmethod.latin.settings.SeekBarDialogPreference
56        android:key="pref_key_preview_show_up_start_scale"
57        android:title="@string/prefs_key_popup_show_up_start_scale_settings"
58        latin:maxValue="100" /> <!-- percent -->
59    <com.android.inputmethod.latin.settings.SeekBarDialogPreference
60        android:key="pref_key_preview_dismiss_end_scale"
61        android:title="@string/prefs_key_popup_dismiss_end_scale_settings"
62        latin:maxValue="100" /> <!-- percent -->
63    <com.android.inputmethod.latin.settings.SeekBarDialogPreference
64        android:key="pref_key_preview_show_up_duration"
65        android:title="@string/prefs_key_popup_show_up_duration_settings"
66        latin:maxValue="100" /> <!-- milliseconds -->
67    <com.android.inputmethod.latin.settings.SeekBarDialogPreference
68        android:key="pref_key_preview_dismiss_duration"
69        android:title="@string/prefs_key_popup_dismiss_duration_settings"
70        latin:maxValue="100" /> <!-- milliseconds -->
71    <PreferenceScreen
72        android:key="read_external_dictionary"
73        android:title="@string/prefs_read_external_dictionary" />
74    <PreferenceCategory
75        android:key="pref_key_dump_dictionaries"
76        android:title="@string/prefs_dump_dynamic_dicts">
77    </PreferenceCategory>
78</PreferenceScreen>
79