blob: 48c1544085d6fad6cd654bba912e3ead713d0850 [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"
18 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
19 android:key="lockscreen_settings"
20 android:title="@string/lockscreen_category_title" >
21
22 <Preference
23 android:key="bottom_shortcuts_category"
24 android:title="@string/systemui_tuner_lockscreen_bottom_shortcuts_title"
25 android:summary="@string/systemui_tuner_lockscreen_bottom_shortcuts_summary">
26 <intent android:action="android.intent.action.MAIN"
27 android:targetPackage="com.android.systemui"
28 android:targetClass="com.android.systemui.tuner.LockscreenTunerActivity" />
29 </Preference>
30
Alex Cruz1c283972018-01-10 16:44:09 -050031 <Preference
32 android:key="lockscreen_item"
33 android:title="@string/lockscreen_item_title"
34 android:summary="@string/lockscreen_item_summary"
35 android:fragment="org.omnirom.omnigears.interfacesettings.LockscreenItemSettings" />
enzoo9695f6b3b2018-04-11 21:40:34 +000036
Juan Ezquerro LLanesefe2ebe2018-05-22 23:14:11 +020037 <org.omnirom.omnilib.preference.SystemSettingSwitchPreference
Alex Cruz1c283972018-01-10 16:44:09 -050038 android:key="lockscreen_hide_media"
39 android:title="@string/lockscreen_hide_media_title"
40 android:summary="@string/lockscreen_hide_media_summary"
41 android:defaultValue="false" />
enzoo9695f6b3b2018-04-11 21:40:34 +000042
Juan Ezquerro LLanesefe2ebe2018-05-22 23:14:11 +020043 <org.omnirom.omnilib.preference.SystemSettingSwitchPreference
Alex Cruz1c283972018-01-10 16:44:09 -050044 android:key="double_tap_sleep_lockscreen"
45 android:title="@string/double_tap_sleep_lockscreen_title"
46 android:summary="@string/double_tap_sleep_lockscreen_summary"
47 android:defaultValue="false" />
48
Juan Ezquerro LLanesefe2ebe2018-05-22 23:14:11 +020049 <org.omnirom.omnilib.preference.SecureSettingSwitchPreference
Alex Cruz1c283972018-01-10 16:44:09 -050050 android:key="lockscreen_qs_disabled"
51 android:title="@string/lockscreen_qs_disabled_title"
52 android:summary="@string/lockscreen_qs_disabled_summary"
53 android:defaultValue="false" />
enzoo9695f6b3b2018-04-11 21:40:34 +000054
55</PreferenceScreen>
56