blob: 93a5cc499d47a308ffce6b91b3112e49c5d3f78e [file] [log] [blame]
maxwen30bb9652018-08-31 11:13:37 +02001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2018 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
18 xmlns:android="http://schemas.android.com/apk/res/android"
xyyx12cbc6c2018-09-17 18:38:12 -060019 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
maxwen30bb9652018-08-31 11:13:37 +020020 android:title="@string/lockscreen_item_title"
21 android:key="lockscreen_item">
22
pimpmaneatonc0502a12018-09-17 12:58:06 -060023 <org.omnirom.omnilib.preference.SecureSettingSwitchPreference
24 android:key="lockscreen_visualizer_enabled"
xyyx12cbc6c2018-09-17 18:38:12 -060025 android:title="@string/lockscreen_visualizer_enable"
26 android:summary="@string/lockscreen_visualizer_enable_summary"
pimpmaneatonc0502a12018-09-17 12:58:06 -060027 android:defaultValue="false" />
28
maxwen30bb9652018-08-31 11:13:37 +020029 <org.omnirom.omnilib.preference.SystemSettingSwitchPreference
mydongistiny7e265052018-09-17 13:12:27 -060030 android:key="lock_screen_visualizer_use_custom_color"
31 android:title="@string/lockscreen_visualizer_enable_custom"
32 android:summary="@string/lockscreen_visualizer_enable_custom_summary"
33 android:dependency="lockscreen_visualizer_enabled"
34 android:defaultValue="false" />
35
36 <org.omnirom.omnilib.preference.ColorSelectPreference
37 android:key="lock_screen_visualizer_custom_color"
xyyx12cbc6c2018-09-17 18:38:12 -060038 android:title="@string/lockscreen_visualizer_custom_color"
mydongistiny7e265052018-09-17 13:12:27 -060039 android:dependency="lock_screen_visualizer_use_custom_color"
xyyx12cbc6c2018-09-17 18:38:12 -060040 settings:multiColor="true"
41 settings:withAlpha="true"
mydongistiny7e265052018-09-17 13:12:27 -060042 android:defaultValue="0xffffffff"
43 android:dialogTitle="@string/lockscreen_visualizer_custom_color" />
44
45 <org.omnirom.omnilib.preference.SystemSettingSwitchPreference
xyyxab101182018-09-25 06:48:06 -060046 android:key="lockscreen_battery_info"
47 android:title="@string/lockscreen_battery_info_title"
48 android:summary="@string/lockscreen_battery_info_summary"
49 android:defaultValue="true" />
50
51 <org.omnirom.omnilib.preference.SystemSettingSwitchPreference
maxwen30bb9652018-08-31 11:13:37 +020052 android:key="lockscreen_weather_enabled"
53 android:title="@string/lockscreen_weather_title"
54 android:summary="@string/lockscreen_weather_summary"
55 android:defaultValue="false" />
56
57 <Preference
58 android:icon="@drawable/ic_info_outline_24dp"
59 android:persistent="false"
60 android:summary="@string/lockscreen_items_aod_info_title" />
61</PreferenceScreen>
62