blob: c98736b231f7c81b7a2ee3a4d6f4a3a4937a762b [file] [log] [blame]
Alan Viverettefc0ab212013-10-02 16:36:33 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2013 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
Fan Zhangaf155222018-07-11 09:41:39 -070017<PreferenceScreen
18 xmlns:android="http://schemas.android.com/apk/res/android"
Sunny Shao30cfc252019-08-15 13:44:54 +080019 xmlns:settings="http://schemas.android.com/apk/res-auto"
menghanli0eae5822019-12-10 19:55:13 +080020 android:persistent="false"
Fan Zhangaf155222018-07-11 09:41:39 -070021 android:title="@string/accessibility_display_daltonizer_preference_title">
Alan Viverettefc0ab212013-10-02 16:36:33 -070022
JasperChang55668762019-12-31 15:51:21 +080023 <com.android.settings.accessibility.PaletteListPreference
24 android:key="daltonizer_preview"
25 android:persistent="false"
26 android:selectable="false"
27 android:title="@string/summary_placeholder"
menghanli87147f52020-01-14 11:19:56 +080028 settings:allowDividerBelow="true"
JasperChang55668762019-12-31 15:51:21 +080029 settings:searchable="false"/>
30
menghanli87147f52020-01-14 11:19:56 +080031 <PreferenceCategory
32 android:title="@string/daltonizer_type"
33 android:key="daltonizer_mode_category" >
menghanli0eae5822019-12-10 19:55:13 +080034
menghanli87147f52020-01-14 11:19:56 +080035 <com.android.settingslib.widget.RadioButtonPreference
36 android:key="daltonizer_mode_deuteranomaly"
37 android:persistent="false"
38 android:summary="@string/daltonizer_mode_deuteranomaly_summary"
39 android:title="@string/daltonizer_mode_deuteranomaly_title" />
menghanli0eae5822019-12-10 19:55:13 +080040
menghanli87147f52020-01-14 11:19:56 +080041 <com.android.settingslib.widget.RadioButtonPreference
42 android:key="daltonizer_mode_protanomaly"
43 android:persistent="false"
44 android:summary="@string/daltonizer_mode_protanomaly_summary"
45 android:title="@string/daltonizer_mode_protanomaly_title" />
Alan Viverettefc0ab212013-10-02 16:36:33 -070046
menghanli87147f52020-01-14 11:19:56 +080047 <com.android.settingslib.widget.RadioButtonPreference
48 android:key="daltonizer_mode_tritanomaly"
49 android:persistent="false"
50 android:summary="@string/daltonizer_mode_tritanomaly_summary"
51 android:title="@string/daltonizer_mode_tritanomaly_title" />
52
53 </PreferenceCategory>
54
Alan Viverettefc0ab212013-10-02 16:36:33 -070055</PreferenceScreen>