blob: ced426f555e580322b0d15cf1981f06463071b64 [file] [log] [blame]
maxwenc7914de2018-08-27 21:34:47 +02001<?xml version="1.0" encoding="utf-8"?>
2
3<!-- Copyright (C) 2017-2018 The OmniROM Project
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17-->
18<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
19 xmlns:settings="http://schemas.android.com/apk/res-auto"
20 android:key="bars_settings"
21 android:title="@string/custom_bars_settings_title" >
22
23 <PreferenceCategory
Juan Ezquerro LLanesd07de332018-08-28 08:48:25 +020024 android:key="quick_settings_category"
25 android:title="@string/quick_settings_category">
26
27 <org.omnirom.omnilib.preference.SeekBarPreference
28 android:key="qs_panel_alpha"
29 android:title="@string/qs_panel_alpha_title"
30 android:summary="@string/qs_panel_alpha_summary"
31 android:max="100"
32 settings:min="0"
33 settings:unitsRight="@string/unit_percent"
34 android:persistent="false" />
35 </PreferenceCategory>
36
37 <PreferenceCategory
Vachounet081cc5d2018-09-13 20:00:42 +020038 android:key="statusbar_settings_category"
39 android:title="@string/statusbar_settings_category">
40
41 <org.omnirom.omnilib.preference.SystemSettingSwitchPreference
42 android:key="use_old_mobiletype"
43 android:title="@string/use_old_mobiletype_title"
44 android:summary="@string/use_old_mobiletype_summary"
45 android:defaultValue="false" />
46 </PreferenceCategory>
47
48 <PreferenceCategory
maxwenc7914de2018-08-27 21:34:47 +020049 android:key="aspect_ratio_category"
50 android:title="@string/aspect_ratio_category_title">
51
52 <org.omnirom.omnilib.preference.SystemSettingSwitchPreference
53 android:key="aspect_ratio_apps_enabled"
54 android:title="@string/aspect_ratio_apps_enabled_title"
55 android:summary="@string/aspect_ratio_apps_enabled_summary"
56 android:defaultValue="false" />
57
58 <org.omnirom.omnilib.preference.AppMultiSelectListPreference
59 android:dependency="aspect_ratio_apps_enabled"
60 android:key="aspect_ratio_apps_list"
61 android:persistent="false"
62 android:summary="@string/aspect_ratio_apps_list_summary"
63 android:title="@string/aspect_ratio_apps_list_title" />
64
65 <org.omnirom.omnilib.preference.ScrollAppsViewPreference
66 android:dependency="aspect_ratio_apps_enabled"
67 android:key="aspect_ratio_apps_list_scroller"
68 android:persistent="false"
69 android:selectable="false" />
70
71 <Preference
72 android:dependency="aspect_ratio_apps_enabled"
73 android:icon="@drawable/ic_info_outline_24dp"
74 android:persistent="false"
75 android:summary="@string/aspect_ratio_apps_info" />
76 </PreferenceCategory>
77</PreferenceScreen>