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
21    <PreferenceCategory
22            android:key="services_category"
23            android:title="@string/accessibility_services_title">
24    </PreferenceCategory>
25
26    <PreferenceCategory
27            android:key="system_category"
28            android:title="@string/accessibility_system_title">
29
30        <PreferenceScreen
31            android:fragment="com.android.settings.accessibility.CaptionPropertiesFragment"
32            android:key="captioning_preference_screen"
33            android:title="@string/accessibility_captioning_title" />
34
35        <PreferenceScreen
36            android:fragment="com.android.settings.accessibility.ToggleScreenMagnificationPreferenceFragment"
37            android:key="screen_magnification_preference_screen"
38            android:title="@string/accessibility_screen_magnification_title"/>
39
40        <SwitchPreference
41                android:key="toggle_large_text_preference"
42                android:title="@string/accessibility_toggle_large_text_preference_title"
43                android:persistent="false"/>
44
45        <SwitchPreference
46                android:key="toggle_high_text_contrast_preference"
47                android:title="@string/accessibility_toggle_high_text_contrast_preference_title"
48                android:summary="@string/experimental_preference"
49                android:persistent="false"/>
50
51        <SwitchPreference
52                android:key="toggle_power_button_ends_call_preference"
53                android:title="@string/accessibility_power_button_ends_call_prerefence_title"
54                android:persistent="false"/>
55
56        <SwitchPreference
57                android:key="toggle_lock_screen_rotation_preference"
58                android:title="@string/accelerometer_title"
59                android:persistent="false"/>
60
61        <SwitchPreference
62                android:key="toggle_speak_password_preference"
63                android:title="@string/accessibility_toggle_speak_password_preference_title"
64                android:persistent="false"/>
65
66        <PreferenceScreen
67                android:fragment="com.android.settings.accessibility.ToggleGlobalGesturePreferenceFragment"
68                android:key="enable_global_gesture_preference_screen"
69                android:title="@string/accessibility_global_gesture_preference_title"/>
70
71        <PreferenceScreen android:key="tts_settings_preference"
72                android:fragment="com.android.settings.tts.TextToSpeechSettings"
73                android:title="@string/tts_settings_title"/>
74
75        <ListPreference android:key="select_long_press_timeout_preference"
76                android:title="@string/accessibility_long_press_timeout_preference_title"
77                android:entries="@array/long_press_timeout_selector_titles"
78                android:entryValues="@array/long_press_timeout_selector_values"
79                android:persistent="false"/>
80
81    </PreferenceCategory>
82
83    <PreferenceCategory
84        android:key="display_category"
85        android:title="@string/accessibility_display_title" >
86        <SwitchPreference
87            android:key="toggle_inversion_preference"
88            android:title="@string/accessibility_display_inversion_preference_title"
89            android:summary="@string/accessibility_display_inversion_preference_subtitle"
90            android:persistent="false" />
91        <PreferenceScreen
92            android:fragment="com.android.settings.accessibility.ToggleDaltonizerPreferenceFragment"
93            android:key="daltonizer_preference_screen"
94            android:title="@string/accessibility_display_daltonizer_preference_title" />
95    </PreferenceCategory>
96
97</PreferenceScreen>
98