enzoo96 | 95f6b3b | 2018-04-11 21:40:34 +0000 | [diff] [blame] | 1 | <?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 Cruz | 1c28397 | 2018-01-10 16:44:09 -0500 | [diff] [blame^] | 31 | <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" /> |
enzoo96 | 95f6b3b | 2018-04-11 21:40:34 +0000 | [diff] [blame] | 36 | |
Alex Cruz | 1c28397 | 2018-01-10 16:44:09 -0500 | [diff] [blame^] | 37 | <org.omnirom.omnigears.preference.SystemSettingSwitchPreference |
| 38 | 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" /> |
enzoo96 | 95f6b3b | 2018-04-11 21:40:34 +0000 | [diff] [blame] | 42 | |
Alex Cruz | 1c28397 | 2018-01-10 16:44:09 -0500 | [diff] [blame^] | 43 | <org.omnirom.omnigears.preference.SystemSettingSwitchPreference |
| 44 | 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 | |
| 49 | <org.omnirom.omnigears.preference.SecureSettingSwitchPreference |
| 50 | 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" /> |
enzoo96 | 95f6b3b | 2018-04-11 21:40:34 +0000 | [diff] [blame] | 54 | |
| 55 | </PreferenceScreen> |
| 56 | |