1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 Copyright (C) 2017 The Android Open Source Project 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16 --> 17 18 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 19 android:title="@string/system_accessibility"> 20 21 <Preference 22 android:key="captions" 23 android:title="@string/accessibility_captions"> 24 <intent 25 android:action="android.intent.action.MAIN" 26 android:targetClass="com.android.tv.settings.system.CaptionSetupActivity" 27 android:targetPackage="com.android.tv.settings"/> 28 </Preference> 29 30 <SwitchPreference 31 android:key="toggle_high_text_contrast" 32 android:persistent="false" 33 android:title="@string/accessibility_toggle_high_text_contrast_preference_title" 34 android:summary="@string/experimental_preference"/> 35 36 <Preference 37 android:key="text_to_speech" 38 android:title="@string/system_accessibility_tts_output" 39 android:fragment="com.android.tv.settings.system.TextToSpeechFragment"/> 40 41 <Preference 42 android:key="accessibility_shortcut" 43 android:title="@string/accessibility_shortcut" 44 android:fragment="com.android.tv.settings.accessibility.AccessibilityShortcutFragment"/> 45 46 <PreferenceCategory 47 android:key="system_accessibility_services" 48 android:title="@string/system_services"/> 49 50 </PreferenceScreen> 51