1<?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" 18 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings" 19 android:title="@string/accessibility_settings" 20 android:persistent="true"> 21 22 <PreferenceCategory 23 android:key="services_category" 24 android:title="@string/accessibility_services_title"> 25 </PreferenceCategory> 26 27 <PreferenceCategory 28 android:key="system_category" 29 android:title="@string/accessibility_system_title"> 30 31 <PreferenceScreen 32 android:fragment="com.android.settings.accessibility.CaptionPropertiesFragment" 33 android:key="captioning_preference_screen" 34 android:title="@string/accessibility_captioning_title" /> 35 36 <PreferenceScreen 37 android:fragment="com.android.settings.accessibility.ToggleScreenMagnificationPreferenceFragment" 38 android:key="screen_magnification_preference_screen" 39 android:title="@string/accessibility_screen_magnification_title"/> 40 41 <PreferenceScreen 42 android:fragment="com.android.settings.accessibility.ToggleFontSizePreferenceFragment" 43 android:key="font_size_preference_screen" 44 android:title="@string/title_font_size"/> 45 46 <com.android.settings.display.ScreenZoomPreference 47 android:key="screen_zoom" 48 android:title="@string/screen_zoom_title"/> 49 50 <PreferenceScreen 51 android:fragment="com.android.settings.accessibility.ToggleAutoclickPreferenceFragment" 52 android:key="autoclick_preference_screen" 53 android:title="@string/accessibility_autoclick_preference_title"/> 54 55 <SwitchPreference 56 android:key="toggle_high_text_contrast_preference" 57 android:title="@string/accessibility_toggle_high_text_contrast_preference_title" 58 android:summary="@string/experimental_preference"/> 59 60 <SwitchPreference 61 android:key="toggle_power_button_ends_call_preference" 62 android:title="@string/accessibility_power_button_ends_call_prerefence_title" 63 android:persistent="false"/> 64 65 <SwitchPreference 66 android:key="toggle_lock_screen_rotation_preference" 67 android:title="@string/accelerometer_title" 68 android:persistent="false"/> 69 70 <SwitchPreference 71 android:key="toggle_speak_password_preference" 72 android:title="@string/accessibility_toggle_speak_password_preference_title" 73 android:persistent="false"/> 74 75 <SwitchPreference 76 android:key="toggle_large_pointer_icon" 77 android:title="@string/accessibility_toggle_large_pointer_icon_title" /> 78 79 <SwitchPreference 80 android:key="toggle_master_mono" 81 android:title="@string/accessibility_toggle_master_mono_title" 82 android:summary="@string/accessibility_toggle_master_mono_summary" 83 android:persistent="false"/> 84 85 <PreferenceScreen 86 android:fragment="com.android.settings.accessibility.ToggleGlobalGesturePreferenceFragment" 87 android:key="enable_global_gesture_preference_screen" 88 android:title="@string/accessibility_global_gesture_preference_title"/> 89 90 <PreferenceScreen android:key="tts_settings_preference" 91 android:fragment="com.android.settings.tts.TextToSpeechSettings" 92 android:title="@string/tts_settings_title"/> 93 94 <ListPreference android:key="select_long_press_timeout_preference" 95 android:title="@string/accessibility_long_press_timeout_preference_title" 96 android:entries="@array/long_press_timeout_selector_titles" 97 android:entryValues="@array/long_press_timeout_selector_values" 98 android:persistent="false"/> 99 100 </PreferenceCategory> 101 102 <PreferenceCategory 103 android:key="display_category" 104 android:title="@string/accessibility_display_title" > 105 <SwitchPreference 106 android:key="toggle_inversion_preference" 107 android:title="@string/accessibility_display_inversion_preference_title" 108 android:summary="@string/accessibility_display_inversion_preference_subtitle" 109 android:persistent="false" /> 110 <PreferenceScreen 111 android:fragment="com.android.settings.accessibility.ToggleDaltonizerPreferenceFragment" 112 android:key="daltonizer_preference_screen" 113 android:title="@string/accessibility_display_daltonizer_preference_title" /> 114 </PreferenceCategory> 115 116</PreferenceScreen> 117