blob: 1bbfc6bc74c575ca67d6eec67bd03ba9698e0363 [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>
maxwen2f40c282017-12-15 19:54:31 +010033
34 <ListPreference
35 android:key="systemui_theme_style"
36 android:title="@string/systemui_theme_style_title"
37 android:persistent="false"
38 android:entries="@array/systemui_theme_style_entries"
39 android:entryValues="@array/systemui_theme_style_values" />
40
maxwen67c4ae32018-02-09 00:45:57 +010041 <!--<ListPreference
maxwen6eec83c2018-01-23 16:54:54 +010042 android:key="omni_theme_select"
43 android:title="@string/omni_theme_select_title"
maxwen67c4ae32018-02-09 00:45:57 +010044 android:summary="@string/summary_placeholder" />-->
maxwen6eec83c2018-01-23 16:54:54 +010045
maxwen67c4ae32018-02-09 00:45:57 +010046 <Preference
47 android:key="omni_theme_select_activity"
48 android:title="@string/omni_theme_select_title"
49 android:summary="@string/omni_theme_select_summary"
50 android:persistent="false" >
51 <intent android:action="android.intent.action.MAIN"
52 android:targetPackage="org.omnirom.omnistyle"
53 android:targetClass="org.omnirom.omnistyle.BrowseThemesActivity" />
54 </Preference>
maxwen58f71942017-08-31 14:37:41 +020055 </PreferenceCategory>
maxwen2f40c282017-12-15 19:54:31 +010056
maxwen80abb702017-08-30 11:24:57 +020057 <PreferenceCategory
58 android:key="category_custom_header"
59 android:title="@string/custom_header_title">
60
61 <org.omnirom.omnigears.preference.SystemSettingSwitchPreference
62 android:key="status_bar_custom_header"
63 android:title="@string/status_bar_custom_header_title"
64 android:defaultValue="false" />
65
66 <ListPreference
67 android:key="custom_header_provider"
68 android:title="@string/custom_header_provider_title"
69 android:persistent="false"
70 android:entries="@array/custom_header_provider_entries"
71 android:entryValues="@array/custom_header_provider_values"
72 android:dependency="status_bar_custom_header" />
73
74 <ListPreference
75 android:key="daylight_header_pack"
76 android:title="@string/daylight_header_pack_title"
77 android:persistent="false"
78 android:dependency="status_bar_custom_header" />
79
80 <Preference
81 android:key="custom_header_browse"
82 android:title="@string/custom_header_browse_title"
83 android:summary="@string/custom_header_browse_summary"
84 android:persistent="false"
85 android:dependency="status_bar_custom_header" >
86 <intent android:action="android.intent.action.MAIN"
87 android:targetPackage="org.omnirom.omnistyle"
88 android:targetClass="org.omnirom.omnistyle.PickHeaderActivity" />
89 </Preference>
90
maxwenc169ddb2018-01-22 04:15:04 +010091 <Preference
92 android:key="file_header_select"
93 android:title="@string/file_header_select_title"
94 android:summary="@string/file_header_select_summary"
95 android:persistent="false"
96 android:dependency="status_bar_custom_header" >
97 </Preference>
98
maxwen80abb702017-08-30 11:24:57 +020099 <org.omnirom.omnigears.preference.SeekBarPreference
100 android:key="status_bar_custom_header_shadow"
101 android:title="@string/status_bar_custom_header_shadow_title"
102 android:summary="@string/status_bar_custom_header_shadow_summary"
103 android:max="100"
104 settings:min="0"
105 settings:unitsLeft=""
106 settings:unitsRight="@string/unit_percent"
107 android:persistent="false"
108 android:dependency="status_bar_custom_header" />
109
110 </PreferenceCategory>
maxwenb51c1112017-01-12 01:10:46 +0100111</PreferenceScreen>