Accessibility settings category restructure, add turn screen darker fragment for related accessibility services. Bug: 174829936 Test: atest TurnScreenDarkerFragmentTest, atest AccessibilitySettingsTest Change-Id: I8aef7a0b5a6d407813aadb22d7ade5103533efa4
83 lines
3.6 KiB
XML
83 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2021 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:settings="http://schemas.android.com/apk/res-auto"
|
|
android:key="accessibility_text_and_display"
|
|
android:persistent="false"
|
|
android:title="@string/accessibility_text_and_display_title">
|
|
|
|
<Preference
|
|
android:fragment="com.android.settings.display.ToggleFontSizePreferenceFragment"
|
|
android:key="font_size_preference_screen"
|
|
android:persistent="false"
|
|
android:title="@string/title_font_size"
|
|
settings:controller="com.android.settings.display.FontSizePreferenceController"
|
|
settings:searchable="false"/>
|
|
|
|
<com.android.settings.display.ScreenZoomPreference
|
|
android:fragment="com.android.settings.display.ScreenZoomSettings"
|
|
android:key="accessibility_settings_screen_zoom"
|
|
android:persistent="false"
|
|
android:title="@string/screen_zoom_title"
|
|
settings:searchable="false"/>
|
|
|
|
<SwitchPreference
|
|
android:key="toggle_force_bold_text"
|
|
android:persistent="false"
|
|
android:title="@string/force_bold_text"
|
|
settings:controller="com.android.settings.accessibility.FontWeightAdjustmentPreferenceController"/>
|
|
|
|
<Preference
|
|
android:fragment="com.android.settings.accessibility.TurnScreenDarkerFragment"
|
|
android:key="turn_screen_darker_preference_screen"
|
|
android:persistent="false"
|
|
android:title="@string/accessibility_turn_screen_darker_title"
|
|
settings:searchable="true"/>
|
|
|
|
<Preference
|
|
android:fragment="com.android.settings.accessibility.ToggleDaltonizerPreferenceFragment"
|
|
android:icon="@drawable/ic_daltonizer"
|
|
android:key="daltonizer_preference"
|
|
android:persistent="false"
|
|
android:title="@string/accessibility_display_daltonizer_preference_title"
|
|
settings:controller="com.android.settings.accessibility.DaltonizerPreferenceController"/>
|
|
|
|
<SwitchPreference
|
|
android:key="toggle_high_text_contrast_preference"
|
|
android:persistent="false"
|
|
android:title="@string/accessibility_toggle_high_text_contrast_preference_title"
|
|
settings:controller="com.android.settings.accessibility.HighTextContrastPreferenceController"/>
|
|
|
|
<SwitchPreference
|
|
android:key="toggle_disable_animations"
|
|
android:persistent="false"
|
|
android:title="@string/accessibility_disable_animations"
|
|
settings:controller="com.android.settings.accessibility.DisableAnimationsPreferenceController"/>
|
|
|
|
<SwitchPreference
|
|
android:key="toggle_large_pointer_icon"
|
|
android:persistent="false"
|
|
android:title="@string/accessibility_toggle_large_pointer_icon_title"
|
|
settings:controller="com.android.settings.accessibility.LargePointerIconPreferenceController"/>
|
|
|
|
<PreferenceCategory
|
|
android:key="experimental_category"
|
|
android:persistent="false"
|
|
android:title="@string/experimental_category_title">
|
|
</PreferenceCategory>
|
|
</PreferenceScreen> |