1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 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:sysui="http://schemas.android.com/apk/res-auto"
19    android:title="@string/system_ui_tuner">
20
21    <PreferenceScreen
22        android:key="status_bar"
23        android:title="@string/status_bar" >
24
25        <com.android.systemui.tuner.StatusBarSwitch
26            android:key="rotate"
27            android:title="@string/status_bar_settings_auto_rotation" />
28
29        <com.android.systemui.tuner.StatusBarSwitch
30            android:key="headset"
31            android:title="@string/headset" />
32
33        <com.android.systemui.tuner.StatusBarSwitch
34            android:key="managed_profile"
35            android:title="@string/status_bar_work" />
36
37        <!-- ime -->
38        <!-- sync_failing -->
39        <!-- sync_active -->
40
41        <com.android.systemui.tuner.StatusBarSwitch
42            android:key="cast"
43            android:title="@string/quick_settings_cast_title" />
44
45        <com.android.systemui.tuner.StatusBarSwitch
46            android:key="hotspot"
47            android:title="@string/quick_settings_hotspot_label" />
48
49        <com.android.systemui.tuner.StatusBarSwitch
50            android:key="bluetooth"
51            android:title="@string/quick_settings_bluetooth_label" />
52
53        <!-- nfc -->
54        <!-- tty -->
55        <!-- speakerphone -->
56
57        <com.android.systemui.tuner.StatusBarSwitch
58            android:key="zen"
59            android:title="@string/quick_settings_dnd_label" />
60
61        <!-- mute -->
62
63        <com.android.systemui.tuner.StatusBarSwitch
64            android:key="volume"
65            android:title="@*android:string/volume_unknown" />
66
67        <com.android.systemui.tuner.StatusBarSwitch
68            android:key="wifi"
69            android:title="@string/quick_settings_wifi_label" />
70
71        <com.android.systemui.tuner.StatusBarSwitch
72            android:key="ethernet"
73            android:title="@string/status_bar_ethernet" />
74
75        <com.android.systemui.tuner.StatusBarSwitch
76            android:key="mobile"
77            android:title="@string/quick_settings_cellular_detail_title" />
78
79        <com.android.systemui.tuner.StatusBarSwitch
80            android:key="airplane"
81            android:title="@string/status_bar_airplane" />
82
83        <!-- other weird signal stuff -->
84
85        <com.android.systemui.tuner.BatteryPreference
86            android:title="@string/battery"
87            android:summary="%s"
88            android:entries="@array/battery_options" />
89
90        <com.android.systemui.tuner.StatusBarSwitch
91            android:key="alarm_clock"
92            android:title="@string/status_bar_alarm" />
93
94        <!-- secure -->
95
96        <com.android.systemui.tuner.ClockPreference
97            android:title="@string/tuner_time"
98            android:summary="%s"
99            android:entries="@array/clock_options" />
100
101    </PreferenceScreen>
102
103    <PreferenceScreen
104        android:key="volume_and_do_not_disturb"
105        android:title="@string/volume_and_do_not_disturb">
106
107        <!-- Action for this is
108             MetricsConstants.ACTION_TUNER_DO_NOT_DISTURB_VOLUME_SHORTCUT -->
109        <com.android.systemui.tuner.TunerSwitch
110            android:key="sysui_volume_down_silent,sysui_volume_up_silent"
111            android:title="@string/volume_dnd_silent"
112            sysui:defValue="true"
113            sysui:metricsAction="315" />
114
115    </PreferenceScreen>
116
117    <PreferenceScreen
118      android:key="doze"
119      android:title="@string/tuner_doze">
120
121        <com.android.systemui.tuner.TunerSwitch
122          android:key="doze_always_on"
123          android:title="@string/tuner_doze_always_on"
124          sysui:defValue="true" />
125
126    </PreferenceScreen>
127
128    <Preference
129        android:key="nav_bar"
130        android:title="@string/nav_bar"
131        android:fragment="com.android.systemui.tuner.NavBarTuner" />
132
133    <Preference
134            android:key="lockscreen"
135            android:title="@string/tuner_lock_screen"
136            android:fragment="com.android.systemui.tuner.LockscreenFragment" />
137
138    <Preference
139            android:key="plugins"
140            android:title="@string/plugins"
141            android:fragment="com.android.systemui.tuner.PluginFragment" />
142
143    <!-- Warning, this goes last. -->
144    <Preference
145        android:summary="@string/tuner_persistent_warning"
146        android:selectable="false" />
147
148</PreferenceScreen>
149