blob: 0b6f9d8d9ddf40c221873c063706bc574eda1382 [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
31 <org.omnirom.omnigears.preference.SystemSettingSwitchPreference
32 android:key="lockscreen_hide_media"
33 android:title="@string/lockscreen_hide_media_title"
34 android:summary="@string/lockscreen_hide_media_summary"
35 android:defaultValue="false" />
36
37 <org.omnirom.omnigears.preference.SystemSettingSwitchPreference
38 android:key="double_tap_sleep_lockscreen"
39 android:title="@string/double_tap_sleep_lockscreen_title"
40 android:summary="@string/double_tap_sleep_lockscreen_summary"
41 android:defaultValue="false" />
42
43 <org.omnirom.omnigears.preference.SecureSettingSwitchPreference
44 android:key="lockscreen_qs_disabled"
45 android:title="@string/lockscreen_qs_disabled_title"
46 android:summary="@string/lockscreen_qs_disabled_summary"
47 android:defaultValue="false" />
48
49</PreferenceScreen>
50