blob: 12c196edb9178109611c0ecc4e0cf78cb9d5d9d6 [file] [log] [blame]
maxwen70e478f2015-04-20 01:26:36 +02001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 The OmniROM Project
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
16 -->
17
18<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
19 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
20
21 <PreferenceCategory
maxwen7b0889d2015-10-03 01:21:09 +020022 android:key="category_statusbar"
23 android:title="@string/statusbar_title">
maxwen70e478f2015-04-20 01:26:36 +020024
maxwen7b0889d2015-10-03 01:21:09 +020025 <com.android.settings.preference.SystemCheckBoxPreference
26 android:key="status_bar_brightness_control"
27 android:title="@string/status_bar_brightness_control_title"
28 android:summary="@string/status_bar_brightness_control_summary"
29 android:defaultValue="false"/>
30
Hernan Castanon Alvarez97f4df12015-12-10 09:38:49 -080031 <com.android.settings.preference.SystemCheckBoxPreference
32 android:key="double_tap_sleep_gesture"
33 android:title="@string/double_tap_to_sleep_title"
34 android:summary="@string/double_tap_to_sleep_summary"
35 android:defaultValue="false" />
36
maxwen86029012016-02-07 23:50:28 +010037 <PreferenceScreen
maxwen7b0889d2015-10-03 01:21:09 +020038 android:key="statusbar_battery"
39 android:title="@string/battery_title"
maxwen86029012016-02-07 23:50:28 +010040 android:summary="@string/statusbar_battery_summary"
41 android:fragment="org.omnirom.omnigears.interfacesettings.StatusbarBatterySettings" />
maxwen7b0889d2015-10-03 01:21:09 +020042
maxwend7917092015-11-25 21:34:35 +010043 <PreferenceScreen
44 android:title="@string/status_bar_icon_blacklist_title"
45 android:summary="@string/status_bar_icon_blacklist_summary" >
46 <intent android:action="android.intent.action.MAIN"
47 android:targetPackage="com.android.systemui"
48 android:targetClass="com.android.systemui.tuner.StatusBarActivity" />
49 </PreferenceScreen>
maxwena2af5572015-07-04 00:36:51 +020050 </PreferenceCategory>
Menno van Grinsvenadebab42016-01-09 21:47:53 +010051
52 <!-- Network traffic meter -->
maxwend7917092015-11-25 21:34:35 +010053 <PreferenceScreen
maxwen03a36512015-09-25 23:35:44 +020054 android:key="category_network_traffic"
maxwend7917092015-11-25 21:34:35 +010055 android:title="@string/network_traffic_title"
56 android:fragment="org.omnirom.omnigears.interfacesettings.NetworkTraffic" />
maxwen03a36512015-09-25 23:35:44 +020057
maxwena2af5572015-07-04 00:36:51 +020058 <PreferenceCategory
Menno van Grinsvenadebab42016-01-09 21:47:53 +010059 android:key="category_navigationbar"
60 android:title="@string/navigationbar_title">
61
62 <com.android.settings.preference.SystemCheckBoxPreference
63 android:key="enable_tablet_navigation"
64 android:title="@string/enable_tablet_navigation_title"
65 android:summary="@string/enable_tablet_navigation_summary"
66 android:defaultValue="false" />
67 </PreferenceCategory>
68
69 <PreferenceCategory
maxwen9ede99c2015-08-17 00:49:29 +020070 android:key="notification_category"
71 android:title="@string/notification_title" >
72
maxwen537ebde2015-12-08 16:06:41 +010073 <CheckBoxPreference
maxwen9ede99c2015-08-17 00:49:29 +020074 android:key="status_bar_custom_header"
75 android:title="@string/status_bar_custom_header_title"
76 android:summary="@string/status_bar_custom_header_summary"
77 android:defaultValue="false"/>
maxwend7917092015-11-25 21:34:35 +010078
maxwen537ebde2015-12-08 16:06:41 +010079 <ListPreference
80 android:key="daylight_header_pack"
81 android:title="@string/daylight_header_pack_title"
82 android:persistent="false" />
83
maxwend7917092015-11-25 21:34:35 +010084 <PreferenceScreen
85 android:title="@string/quick_settings_title"
86 android:summary="@string/quick_settings_summary" >
87 <intent android:action="android.intent.action.MAIN"
88 android:targetPackage="com.android.systemui"
89 android:targetClass="com.android.systemui.tuner.QsTunerActivity" />
90 </PreferenceScreen>
maxwen9ede99c2015-08-17 00:49:29 +020091 </PreferenceCategory>
maxwen70e478f2015-04-20 01:26:36 +020092</PreferenceScreen>