svetoslavganov | a05d0dc | 2009-05-14 22:26:34 -0700 | [diff] [blame] | 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 | |
hjchangliao | bc64434 | 2018-05-22 10:36:25 +0800 | [diff] [blame] | 17 | <PreferenceScreen |
Mill Chen | d37618c | 2019-06-17 21:19:37 +0800 | [diff] [blame] | 18 | xmlns:android="http://schemas.android.com/apk/res/android" |
| 19 | xmlns:settings="http://schemas.android.com/apk/res-auto" |
Edgar Wang | 77de405 | 2020-02-14 17:58:38 +0800 | [diff] [blame] | 20 | android:key="accessibility_settings_screen" |
menghanli | 0eae582 | 2019-12-10 19:55:13 +0800 | [diff] [blame] | 21 | android:persistent="false" |
| 22 | android:title="@string/accessibility_settings"> |
Anna Galusza | 6bc8144 | 2016-01-06 21:46:12 +0000 | [diff] [blame] | 23 | |
Costin Manolache | 672b3c6 | 2011-07-21 10:38:15 -0700 | [diff] [blame] | 24 | <PreferenceCategory |
Mill Chen | d37618c | 2019-06-17 21:19:37 +0800 | [diff] [blame] | 25 | android:key="user_installed_services_category" |
menghanli | 0eae582 | 2019-12-10 19:55:13 +0800 | [diff] [blame] | 26 | android:persistent="false" |
| 27 | android:title="@string/user_installed_services_category_title"/> |
Svetoslav Ganov | 3d64653 | 2010-06-29 19:41:43 -0700 | [diff] [blame] | 28 | |
Costin Manolache | 672b3c6 | 2011-07-21 10:38:15 -0700 | [diff] [blame] | 29 | <PreferenceCategory |
Mill Chen | d37618c | 2019-06-17 21:19:37 +0800 | [diff] [blame] | 30 | android:key="screen_reader_category" |
menghanli | 0eae582 | 2019-12-10 19:55:13 +0800 | [diff] [blame] | 31 | android:persistent="false" |
Ben Chung | e66e641 | 2021-01-21 17:24:41 +0800 | [diff] [blame] | 32 | android:title="@string/screen_reader_category_title"/> |
Saige McVea | 0613627 | 2017-03-15 00:53:41 -0700 | [diff] [blame] | 33 | |
| 34 | <PreferenceCategory |
Mill Chen | d37618c | 2019-06-17 21:19:37 +0800 | [diff] [blame] | 35 | android:key="display_category" |
menghanli | 0eae582 | 2019-12-10 19:55:13 +0800 | [diff] [blame] | 36 | android:persistent="false" |
Mill Chen | d37618c | 2019-06-17 21:19:37 +0800 | [diff] [blame] | 37 | android:title="@string/display_category_title"> |
Alan Viverette | cc0e782 | 2013-08-06 13:53:58 -0700 | [diff] [blame] | 38 | |
Peter_Liang | 79a2930 | 2022-01-07 16:34:14 +0800 | [diff] [blame] | 39 | <Preference |
Peter_Liang | c8f6bcc | 2022-01-09 12:28:24 +0800 | [diff] [blame] | 40 | android:fragment="com.android.settings.accessibility.TextReadingPreferenceFragment" |
Peter_Liang | 79a2930 | 2022-01-07 16:34:14 +0800 | [diff] [blame] | 41 | android:icon="@drawable/ic_adaptive_font_download" |
| 42 | android:key="text_reading_options" |
| 43 | android:persistent="false" |
Peter_Liang | fcce62a | 2022-04-22 01:53:04 +0800 | [diff] [blame] | 44 | android:title="@string/accessibility_text_reading_options_title" |
| 45 | settings:controller="com.android.settings.accessibility.TextReadingFragmentForA11ySettingsController"/> |
Peter_Liang | 79a2930 | 2022-01-07 16:34:14 +0800 | [diff] [blame] | 46 | |
Fan Zhang | 1c118b5 | 2016-12-09 13:04:24 -0800 | [diff] [blame] | 47 | <Preference |
Peter_Liang | 19631ec | 2022-02-14 10:42:08 +0800 | [diff] [blame] | 48 | android:fragment="com.android.settings.accessibility.ColorAndMotionFragment" |
| 49 | android:key="color_and_motion" |
| 50 | android:icon="@drawable/ic_color_and_motion" |
menghanli | 0eae582 | 2019-12-10 19:55:13 +0800 | [diff] [blame] | 51 | android:persistent="false" |
Peter_Liang | 19631ec | 2022-02-14 10:42:08 +0800 | [diff] [blame] | 52 | android:title="@string/accessibility_color_and_motion_title" |
Ben Chung | 3e2e440 | 2020-12-23 18:44:36 +0800 | [diff] [blame] | 53 | settings:searchable="true"/> |
Noah Wang | e64cc26 | 2015-12-15 09:05:30 -0800 | [diff] [blame] | 54 | |
Wilson Wu | 9edf797 | 2021-08-27 10:19:56 +0800 | [diff] [blame] | 55 | <com.android.settingslib.PrimarySwitchPreference |
jasonwshsu | 541e333 | 2021-04-01 10:25:03 +0800 | [diff] [blame] | 56 | android:fragment="com.android.settings.accessibility.ToggleReduceBrightColorsPreferenceFragment" |
| 57 | android:key="reduce_bright_colors_preference" |
jasonwshsu | cad5436 | 2021-04-20 11:54:25 +0800 | [diff] [blame] | 58 | android:icon="@drawable/ic_reduce_bright_colors" |
jasonwshsu | 541e333 | 2021-04-01 10:25:03 +0800 | [diff] [blame] | 59 | android:persistent="false" |
| 60 | android:title="@string/reduce_bright_colors_preference_title" |
jasonwshsu | b625e8a | 2021-04-24 01:56:55 +0800 | [diff] [blame] | 61 | settings:keywords="@string/keywords_reduce_bright_colors" |
| 62 | settings:controller="com.android.settings.accessibility.ReduceBrightColorsPreferenceController"/> |
jasonwshsu | 541e333 | 2021-04-01 10:25:03 +0800 | [diff] [blame] | 63 | |
Ben Chung | 3e2e440 | 2020-12-23 18:44:36 +0800 | [diff] [blame] | 64 | <Preference |
Mill Chen | d37618c | 2019-06-17 21:19:37 +0800 | [diff] [blame] | 65 | android:fragment="com.android.settings.accessibility.MagnificationPreferenceFragment" |
menghanli | 0eae582 | 2019-12-10 19:55:13 +0800 | [diff] [blame] | 66 | android:key="magnification_preference_screen" |
jasonwshsu | cad5436 | 2021-04-20 11:54:25 +0800 | [diff] [blame] | 67 | android:icon="@drawable/ic_accessibility_magnification" |
menghanli | 0eae582 | 2019-12-10 19:55:13 +0800 | [diff] [blame] | 68 | android:persistent="false" |
| 69 | android:title="@string/accessibility_screen_magnification_title" |
jasonwshsu | b625e8a | 2021-04-24 01:56:55 +0800 | [diff] [blame] | 70 | settings:keywords="@string/keywords_magnification" |
Mill Chen | d37618c | 2019-06-17 21:19:37 +0800 | [diff] [blame] | 71 | settings:controller="com.android.settings.accessibility.MagnificationPreferenceController"/> |
jasonwshsu | 541e333 | 2021-04-01 10:25:03 +0800 | [diff] [blame] | 72 | |
Saige McVea | 0613627 | 2017-03-15 00:53:41 -0700 | [diff] [blame] | 73 | </PreferenceCategory> |
| 74 | |
| 75 | <PreferenceCategory |
Mill Chen | d37618c | 2019-06-17 21:19:37 +0800 | [diff] [blame] | 76 | android:key="interaction_control_category" |
menghanli | 0eae582 | 2019-12-10 19:55:13 +0800 | [diff] [blame] | 77 | android:persistent="false" |
Mill Chen | d37618c | 2019-06-17 21:19:37 +0800 | [diff] [blame] | 78 | android:title="@string/interaction_control_category_title"> |
Saige McVea | 0613627 | 2017-03-15 00:53:41 -0700 | [diff] [blame] | 79 | |
Kevin Chang | 9f83495 | 2019-07-26 14:40:07 +0800 | [diff] [blame] | 80 | <Preference |
Ben Chung | dfe1977 | 2021-01-07 16:35:02 +0800 | [diff] [blame] | 81 | android:fragment="com.android.settings.accessibility.TapAssistanceFragment" |
| 82 | android:key="tap_assistance_preference_screen" |
jasonwshsu | cad5436 | 2021-04-20 11:54:25 +0800 | [diff] [blame] | 83 | android:icon="@drawable/ic_tap_assistance" |
Ben Chung | dfe1977 | 2021-01-07 16:35:02 +0800 | [diff] [blame] | 84 | android:persistent="false" |
| 85 | android:title="@string/accessibility_tap_assistance_title" |
| 86 | settings:searchable="true"/> |
| 87 | |
| 88 | <Preference |
Ben Chung | 29ace16 | 2021-01-12 21:39:40 +0800 | [diff] [blame] | 89 | android:fragment="com.android.settings.accessibility.SystemControlsFragment" |
| 90 | android:key="system_controls_preference_screen" |
jasonwshsu | cad5436 | 2021-04-20 11:54:25 +0800 | [diff] [blame] | 91 | android:icon="@drawable/ic_system_controls" |
Ben Chung | 29ace16 | 2021-01-12 21:39:40 +0800 | [diff] [blame] | 92 | android:title="@string/accessibility_system_controls_title" |
| 93 | settings:searchable="true"/> |
| 94 | |
| 95 | <Preference |
| 96 | android:fragment="com.android.settings.accessibility.VibrationSettings" |
| 97 | android:key="vibration_preference_screen" |
jasonwshsu | cad5436 | 2021-04-20 11:54:25 +0800 | [diff] [blame] | 98 | android:icon="@drawable/ic_vibration" |
menghanli | 0eae582 | 2019-12-10 19:55:13 +0800 | [diff] [blame] | 99 | android:persistent="false" |
Ben Chung | 29ace16 | 2021-01-12 21:39:40 +0800 | [diff] [blame] | 100 | android:title="@string/accessibility_vibration_settings_title" |
Lais Andrade | fe2ed12 | 2021-12-02 17:35:46 +0000 | [diff] [blame] | 101 | settings:controller="com.android.settings.accessibility.VibrationPreferenceController" |
Lais Andrade | 141b5bb | 2021-11-23 18:39:06 +0000 | [diff] [blame] | 102 | settings:keywords="@string/keywords_vibration" |
| 103 | android:summary="@string/accessibility_vibration_settings_summary"/> |
Kevin Chang | 9f83495 | 2019-07-26 14:40:07 +0800 | [diff] [blame] | 104 | |
Lauren Winston | 205018a | 2022-07-25 22:58:56 +0000 | [diff] [blame] | 105 | <!-- TODO(b/241023294): UX review of where Software Cursor feature should be positioned. --> |
| 106 | <Preference |
| 107 | android:key="software_cursor_preference_screen" |
| 108 | android:icon="@drawable/ic_accessibility_software_cursor" |
| 109 | android:fragment="com.android.settings.accessibility.CursorPreferenceFragment" |
| 110 | android:title="@string/accessibility_software_cursor_title" |
| 111 | settings:searchable="true" |
| 112 | settings:keywords="@string/keywords_software_cursor" |
| 113 | android:summary="@string/accessibility_software_cursor_summary" |
| 114 | settings:controller="com.android.settings.accessibility.SoftwareCursorPreferenceController"/> |
| 115 | |
Saige McVea | 0613627 | 2017-03-15 00:53:41 -0700 | [diff] [blame] | 116 | </PreferenceCategory> |
| 117 | |
| 118 | <PreferenceCategory |
Ben Chung | 478db86 | 2021-02-08 19:22:43 +0800 | [diff] [blame] | 119 | android:key="captions_category" |
menghanli | 0eae582 | 2019-12-10 19:55:13 +0800 | [diff] [blame] | 120 | android:persistent="false" |
Ben Chung | 478db86 | 2021-02-08 19:22:43 +0800 | [diff] [blame] | 121 | android:title="@string/captions_category_title"> |
Jun Mukai | 5875bb8 | 2015-11-23 10:47:49 -0800 | [diff] [blame] | 122 | |
Anthony Tripaldi | 308d833 | 2019-03-26 10:55:17 -0400 | [diff] [blame] | 123 | <Preference |
| 124 | android:key="live_caption" |
jasonwshsu | cad5436 | 2021-04-20 11:54:25 +0800 | [diff] [blame] | 125 | android:icon="@drawable/ic_live_caption" |
menghanli | 0eae582 | 2019-12-10 19:55:13 +0800 | [diff] [blame] | 126 | android:persistent="false" |
Anthony Tripaldi | 308d833 | 2019-03-26 10:55:17 -0400 | [diff] [blame] | 127 | android:summary="@string/live_caption_summary" |
menghanli | 0eae582 | 2019-12-10 19:55:13 +0800 | [diff] [blame] | 128 | android:title="@string/live_caption_title" |
jasonwshsu | b625e8a | 2021-04-24 01:56:55 +0800 | [diff] [blame] | 129 | settings:keywords="@string/keywords_live_caption" |
Anthony Tripaldi | 308d833 | 2019-03-26 10:55:17 -0400 | [diff] [blame] | 130 | settings:controller="com.android.settings.accessibility.LiveCaptionPreferenceController"/> |
| 131 | |
Fan Zhang | 1c118b5 | 2016-12-09 13:04:24 -0800 | [diff] [blame] | 132 | <Preference |
menghanli | e571256 | 2022-08-01 16:47:12 +0800 | [diff] [blame] | 133 | android:fragment="com.android.settings.accessibility.CaptioningPropertiesFragment" |
Ben Chung | 478db86 | 2021-02-08 19:22:43 +0800 | [diff] [blame] | 134 | android:key="captioning_preference_screen" |
jasonwshsu | cad5436 | 2021-04-20 11:54:25 +0800 | [diff] [blame] | 135 | android:icon="@drawable/ic_captioning" |
Ben Chung | 478db86 | 2021-02-08 19:22:43 +0800 | [diff] [blame] | 136 | android:title="@string/accessibility_captioning_title" |
| 137 | settings:controller="com.android.settings.accessibility.CaptioningPreferenceController"/> |
| 138 | |
| 139 | <Preference |
| 140 | android:key="rtt_setting" |
jasonwshsu | cad5436 | 2021-04-20 11:54:25 +0800 | [diff] [blame] | 141 | android:icon="@drawable/ic_rtt_settings" |
Ben Chung | 478db86 | 2021-02-08 19:22:43 +0800 | [diff] [blame] | 142 | android:summary="@string/summary_placeholder" |
| 143 | android:title="@string/rtt_settings_title" |
jasonwshsu | b625e8a | 2021-04-24 01:56:55 +0800 | [diff] [blame] | 144 | settings:keywords="@string/keywords_rtt" |
Ben Chung | 478db86 | 2021-02-08 19:22:43 +0800 | [diff] [blame] | 145 | settings:controller="com.android.settings.accessibility.RTTSettingPreferenceController"/> |
| 146 | |
| 147 | </PreferenceCategory> |
| 148 | |
| 149 | <PreferenceCategory |
| 150 | android:key="audio_category" |
| 151 | android:persistent="false" |
| 152 | android:title="@string/audio_category_title"> |
| 153 | |
Kaiqiang Wang | f41b0ab | 2022-02-27 10:13:44 +0100 | [diff] [blame] | 154 | <SwitchPreference |
| 155 | android:key="toggle_audio_description" |
| 156 | android:persistent="false" |
| 157 | android:icon="@drawable/ic_audio_description" |
| 158 | android:summary="@string/accessibility_audio_description_summary" |
| 159 | android:title="@string/accessibility_toggle_audio_description_preference_title" |
| 160 | settings:keywords="@string/keywords_audio_description" |
| 161 | settings:searchable="true" |
| 162 | settings:controller="com.android.settings.accessibility.AudioDescriptionPreferenceController"/> |
| 163 | |
Ben Chung | 478db86 | 2021-02-08 19:22:43 +0800 | [diff] [blame] | 164 | <Preference |
timhypeng | 53a12ee | 2018-06-14 13:54:05 +0800 | [diff] [blame] | 165 | android:key="hearing_aid_preference" |
jasonwshsu | cad5436 | 2021-04-20 11:54:25 +0800 | [diff] [blame] | 166 | android:icon="@drawable/ic_hearing_aid" |
menghanli | 0eae582 | 2019-12-10 19:55:13 +0800 | [diff] [blame] | 167 | android:persistent="false" |
timhypeng | 53a12ee | 2018-06-14 13:54:05 +0800 | [diff] [blame] | 168 | android:summary="@string/accessibility_hearingaid_not_connected_summary" |
Mill Chen | 6f3b222 | 2019-07-02 14:44:32 +0800 | [diff] [blame] | 169 | android:title="@string/accessibility_hearingaid_title" |
jasonwshsu | b625e8a | 2021-04-24 01:56:55 +0800 | [diff] [blame] | 170 | settings:keywords="@string/keywords_hearing_aids" |
Mill Chen | 6f3b222 | 2019-07-02 14:44:32 +0800 | [diff] [blame] | 171 | settings:controller="com.android.settings.accessibility.AccessibilityHearingAidPreferenceController"/> |
timhypeng | 53a12ee | 2018-06-14 13:54:05 +0800 | [diff] [blame] | 172 | |
| 173 | <Preference |
Ben Chung | b6e03f2 | 2021-01-14 19:23:04 +0800 | [diff] [blame] | 174 | android:fragment="com.android.settings.accessibility.AudioAdjustmentFragment" |
| 175 | android:key="audio_adjustment_preference_screen" |
jasonwshsu | cad5436 | 2021-04-20 11:54:25 +0800 | [diff] [blame] | 176 | android:icon="@drawable/ic_audio_adjustment" |
Ben Chung | b6e03f2 | 2021-01-14 19:23:04 +0800 | [diff] [blame] | 177 | android:persistent="false" |
| 178 | android:title="@string/accessibility_audio_adjustment_title" |
| 179 | settings:searchable="true"/> |
| 180 | |
Svetoslav Ganov | 8262301 | 2011-03-02 13:00:42 -0800 | [diff] [blame] | 181 | </PreferenceCategory> |
Saige McVea | 31d855e | 2017-03-13 18:04:00 +0000 | [diff] [blame] | 182 | |
menghanli | da07d7a | 2021-02-24 17:09:10 +0800 | [diff] [blame] | 183 | <PreferenceCategory |
| 184 | android:persistent="false" |
| 185 | android:title="@string/general_category_title"> |
Ben Chung | e66e641 | 2021-01-21 17:24:41 +0800 | [diff] [blame] | 186 | |
| 187 | <Preference |
| 188 | android:fragment="com.android.settings.accessibility.ShortcutsSettingsFragment" |
| 189 | android:key="accessibility_shortcuts_preference_screen" |
| 190 | android:persistent="false" |
| 191 | android:title="@string/accessibility_shortcuts_settings_title" |
| 192 | settings:searchable="true"/> |
| 193 | |
| 194 | <Preference |
| 195 | android:fragment="com.android.settings.tts.TextToSpeechSettings" |
| 196 | android:key="tts_settings_preference" |
| 197 | android:persistent="false" |
| 198 | android:title="@string/tts_settings_title" |
| 199 | settings:controller="com.android.settings.language.TtsPreferenceController"/> |
| 200 | |
| 201 | </PreferenceCategory> |
| 202 | |
svetoslavganov | a05d0dc | 2009-05-14 22:26:34 -0700 | [diff] [blame] | 203 | </PreferenceScreen> |