blob: 925213fb60af7a65a960fa4cee621c2d27657b13 [file] [log] [blame]
maxwenb51c1112017-01-12 01:10:46 +01001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2017 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<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
18 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
19
maxwen58f71942017-08-31 14:37:41 +020020 <PreferenceCategory
21 android:key="category_theming"
22 android:title="@string/theming_title">
maxwen6bcb5c52017-01-21 17:21:33 +010023
maxwen58f71942017-08-31 14:37:41 +020024 <Preference
25 android:key="custom_wall_browse"
26 android:title="@string/custom_wall_browse_title"
27 android:summary="@string/custom_wall_browse_summary"
28 android:persistent="false" >
29 <intent android:action="android.intent.action.MAIN"
30 android:targetPackage="org.omnirom.omnistyle"
31 android:targetClass="org.omnirom.omnistyle.BrowseWallsActivity" />
32 </Preference>
maxwen53af2f22017-10-19 00:32:16 +020033
34 <org.omnirom.omnigears.preference.SystemSettingSwitchPreference
35 android:key="qs_style_dark"
36 android:title="@string/qs_style_dark_title"
37 android:summary="@string/qs_style_dark_summary"
38 android:defaultValue="false" />
39
maxwen58f71942017-08-31 14:37:41 +020040 </PreferenceCategory>
maxwen80abb702017-08-30 11:24:57 +020041
42 <PreferenceCategory
43 android:key="category_custom_header"
44 android:title="@string/custom_header_title">
45
46 <org.omnirom.omnigears.preference.SystemSettingSwitchPreference
47 android:key="status_bar_custom_header"
48 android:title="@string/status_bar_custom_header_title"
49 android:defaultValue="false" />
50
51 <ListPreference
52 android:key="custom_header_provider"
53 android:title="@string/custom_header_provider_title"
54 android:persistent="false"
55 android:entries="@array/custom_header_provider_entries"
56 android:entryValues="@array/custom_header_provider_values"
57 android:dependency="status_bar_custom_header" />
58
59 <ListPreference
60 android:key="daylight_header_pack"
61 android:title="@string/daylight_header_pack_title"
62 android:persistent="false"
63 android:dependency="status_bar_custom_header" />
64
65 <Preference
66 android:key="custom_header_browse"
67 android:title="@string/custom_header_browse_title"
68 android:summary="@string/custom_header_browse_summary"
69 android:persistent="false"
70 android:dependency="status_bar_custom_header" >
71 <intent android:action="android.intent.action.MAIN"
72 android:targetPackage="org.omnirom.omnistyle"
73 android:targetClass="org.omnirom.omnistyle.PickHeaderActivity" />
74 </Preference>
75
76 <org.omnirom.omnigears.preference.SeekBarPreference
77 android:key="status_bar_custom_header_shadow"
78 android:title="@string/status_bar_custom_header_shadow_title"
79 android:summary="@string/status_bar_custom_header_shadow_summary"
80 android:max="100"
81 settings:min="0"
82 settings:unitsLeft=""
83 settings:unitsRight="@string/unit_percent"
84 android:persistent="false"
85 android:dependency="status_bar_custom_header" />
86
87 </PreferenceCategory>
maxwen769294a2017-08-26 22:00:13 +020088
maxwen58f71942017-08-31 14:37:41 +020089 <PreferenceCategory
90 android:key="category_statusbar"
91 android:title="@string/statusbar_title">
maxwen769294a2017-08-26 22:00:13 +020092
maxwen58f71942017-08-31 14:37:41 +020093 <org.omnirom.omnigears.preference.SystemSettingSwitchPreference
94 android:key="status_bar_logo"
95 android:title="@string/status_bar_logo_title"
96 android:summary="@string/status_bar_logo_summary"
97 android:defaultValue="false" />
98 </PreferenceCategory>
maxwenb51c1112017-01-12 01:10:46 +010099</PreferenceScreen>