blob: 8dd6f2af7dcf410018fc0e25b094a162ffaefe01 [file] [log] [blame]
enzoo9695f6b3b2018-04-11 21:40:34 +00001<?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 xmlns:android="http://schemas.android.com/apk/res/android"
enzoo9695f6b3b2018-04-11 21:40:34 +000018 android:key="lockscreen_settings"
19 android:title="@string/lockscreen_category_title" >
20
21 <Preference
22 android:key="bottom_shortcuts_category"
23 android:title="@string/systemui_tuner_lockscreen_bottom_shortcuts_title"
24 android:summary="@string/systemui_tuner_lockscreen_bottom_shortcuts_summary">
25 <intent android:action="android.intent.action.MAIN"
26 android:targetPackage="com.android.systemui"
27 android:targetClass="com.android.systemui.tuner.LockscreenTunerActivity" />
28 </Preference>
29
Alex Cruz1c283972018-01-10 16:44:09 -050030 <Preference
31 android:key="lockscreen_item"
32 android:title="@string/lockscreen_item_title"
33 android:summary="@string/lockscreen_item_summary"
34 android:fragment="org.omnirom.omnigears.interfacesettings.LockscreenItemSettings" />
enzoo9695f6b3b2018-04-11 21:40:34 +000035
Juan Ezquerro LLanesefe2ebe2018-05-22 23:14:11 +020036 <org.omnirom.omnilib.preference.SystemSettingSwitchPreference
Alex Cruz1c283972018-01-10 16:44:09 -050037 android:key="lockscreen_hide_media"
38 android:title="@string/lockscreen_hide_media_title"
39 android:summary="@string/lockscreen_hide_media_summary"
40 android:defaultValue="false" />
enzoo9695f6b3b2018-04-11 21:40:34 +000041
Juan Ezquerro LLanesefe2ebe2018-05-22 23:14:11 +020042 <org.omnirom.omnilib.preference.SystemSettingSwitchPreference
Alex Cruz1c283972018-01-10 16:44:09 -050043 android:key="double_tap_sleep_lockscreen"
44 android:title="@string/double_tap_sleep_lockscreen_title"
45 android:summary="@string/double_tap_sleep_lockscreen_summary"
46 android:defaultValue="false" />
47
Juan Ezquerro LLanesefe2ebe2018-05-22 23:14:11 +020048 <org.omnirom.omnilib.preference.SecureSettingSwitchPreference
Alex Cruz1c283972018-01-10 16:44:09 -050049 android:key="lockscreen_qs_disabled"
50 android:title="@string/lockscreen_qs_disabled_title"
51 android:summary="@string/lockscreen_qs_disabled_summary"
52 android:defaultValue="false" />
enzoo9695f6b3b2018-04-11 21:40:34 +000053
54</PreferenceScreen>
55