blob: bf93eb583c81d66c6bbb291621d8961eaafd178d [file] [log] [blame]
svetoslavganova05d0dc2009-05-14 22:26:34 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 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"
Amith Yamasanid7993472010-08-18 13:59:28 -070018 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
19 android:title="@string/accessibility_settings_title">
svetoslavganova05d0dc2009-05-14 22:26:34 -070020
Costin Manolache672b3c62011-07-21 10:38:15 -070021 <PreferenceCategory
22 android:key="services_category"
23 android:title="@string/accessibility_services_title">
Svetoslav Ganov3d646532010-06-29 19:41:43 -070024 </PreferenceCategory>
25
Costin Manolache672b3c62011-07-21 10:38:15 -070026 <PreferenceCategory
27 android:key="system_category"
28 android:title="@string/accessibility_system_title">
David Brown6e101d12010-03-09 16:53:23 -080029
Costin Manolache672b3c62011-07-21 10:38:15 -070030 <CheckBoxPreference
31 android:key="toggle_large_text_preference"
32 android:title="@string/accessibility_toggle_large_text_title"
Svetoslav Ganov9ad9cf62012-04-12 19:37:58 -070033 android:persistent="false"/>
Costin Manolache672b3c62011-07-21 10:38:15 -070034
35 <CheckBoxPreference
36 android:key="toggle_power_button_ends_call_preference"
37 android:title="@string/accessibility_power_button_ends_call_title"
Svetoslav Ganov9ad9cf62012-04-12 19:37:58 -070038 android:persistent="false"/>
Svetoslav Ganovea5a50a2011-08-31 16:47:57 -070039
40 <CheckBoxPreference
Svetoslav Ganov2121f092012-05-18 18:00:24 -070041 android:key="toggle_lock_screen_rotation_preference"
Svetoslav Ganovea5a50a2011-08-31 16:47:57 -070042 android:title="@string/accelerometer_title"
Svetoslav Ganov9ad9cf62012-04-12 19:37:58 -070043 android:persistent="false"/>
Costin Manolache672b3c62011-07-21 10:38:15 -070044
Svetoslav Ganov7e8dcbe2011-12-05 12:54:53 -080045 <CheckBoxPreference
46 android:key="toggle_speak_password_preference"
47 android:title="@string/accessibility_speak_password_title"
Svetoslav Ganov9ad9cf62012-04-12 19:37:58 -070048 android:persistent="false"/>
Svetoslav Ganov7e8dcbe2011-12-05 12:54:53 -080049
Svetoslav Ganov9ad9cf62012-04-12 19:37:58 -070050 <PreferenceScreen android:key="tts_settings"
51 android:fragment="com.android.settings.tts.TextToSpeechSettings"
52 android:title="@string/tts_settings_title" />
53
Costin Manolache672b3c62011-07-21 10:38:15 -070054 <ListPreference android:key="select_long_press_timeout_preference"
55 android:title="@string/accessibility_long_press_timeout_title"
Svetoslav Ganov82623012011-03-02 13:00:42 -080056 android:entries="@array/long_press_timeout_selector_titles"
57 android:entryValues="@array/long_press_timeout_selector_values"
Svetoslav Ganov9ad9cf62012-04-12 19:37:58 -070058 android:persistent="false"/>
Costin Manolache672b3c62011-07-21 10:38:15 -070059
Svetoslav Ganov1ada2332011-11-07 15:28:12 -080060 <!-- We want a dialog with no title, so use an empty string to avoid a fall back to the preference title. -->
Svetoslav Ganov1a97fa12011-07-27 14:54:52 -070061 <com.android.settings.AccessibilityEnableScriptInjectionPreference
Costin Manolache672b3c62011-07-21 10:38:15 -070062 android:key="toggle_script_injection_preference"
63 android:title="@string/accessibility_script_injection_title"
Svetoslav Ganov1ada2332011-11-07 15:28:12 -080064 android:dialogTitle=""
Svetoslav Ganov1a97fa12011-07-27 14:54:52 -070065 android:dialogIcon="@android:drawable/ic_dialog_alert"
Svetoslav Ganovea5a50a2011-08-31 16:47:57 -070066 android:dialogMessage="@string/accessibility_script_injection_security_warning_summary"
Svetoslav Ganov1a97fa12011-07-27 14:54:52 -070067 android:positiveButtonText="@string/accessibility_script_injection_button_allow"
68 android:negativeButtonText="@string/accessibility_script_injection_button_disallow"
Svetoslav Ganov9ad9cf62012-04-12 19:37:58 -070069 android:persistent="false"/>
Costin Manolache672b3c62011-07-21 10:38:15 -070070
Svetoslav Ganov82623012011-03-02 13:00:42 -080071 </PreferenceCategory>
72
svetoslavganova05d0dc2009-05-14 22:26:34 -070073</PreferenceScreen>