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" |
enzoo96 | 95f6b3b | 2018-04-11 21:40:34 +0000 | [diff] [blame] | 18 | 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 Cruz | 1c28397 | 2018-01-10 16:44:09 -0500 | [diff] [blame] | 30 | <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" /> |
enzoo96 | 95f6b3b | 2018-04-11 21:40:34 +0000 | [diff] [blame] | 35 | |
Juan Ezquerro LLanes | efe2ebe | 2018-05-22 23:14:11 +0200 | [diff] [blame] | 36 | <org.omnirom.omnilib.preference.SystemSettingSwitchPreference |
Alex Cruz | 1c28397 | 2018-01-10 16:44:09 -0500 | [diff] [blame] | 37 | 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" /> |
enzoo96 | 95f6b3b | 2018-04-11 21:40:34 +0000 | [diff] [blame] | 41 | |
Juan Ezquerro LLanes | efe2ebe | 2018-05-22 23:14:11 +0200 | [diff] [blame] | 42 | <org.omnirom.omnilib.preference.SystemSettingSwitchPreference |
Alex Cruz | 1c28397 | 2018-01-10 16:44:09 -0500 | [diff] [blame] | 43 | 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 LLanes | efe2ebe | 2018-05-22 23:14:11 +0200 | [diff] [blame] | 48 | <org.omnirom.omnilib.preference.SecureSettingSwitchPreference |
Alex Cruz | 1c28397 | 2018-01-10 16:44:09 -0500 | [diff] [blame] | 49 | 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" /> |
enzoo96 | 95f6b3b | 2018-04-11 21:40:34 +0000 | [diff] [blame] | 53 | |
maxwen | 6b31cd0 | 2018-06-07 03:24:31 +0200 | [diff] [blame] | 54 | <ListPreference |
| 55 | android:key="lockscreen_clock_style" |
| 56 | android:title="@string/lockscreen_clock_style_title" |
| 57 | android:entries="@array/lockscreen_clock_style_entries" |
| 58 | android:entryValues="@array/lockscreen_clock_style_values" |
| 59 | android:persistent="false"/> |
maxwen | 9ad218e | 2018-06-08 01:23:30 +0200 | [diff] [blame] | 60 | |
| 61 | <Preference |
maxwen | a304710 | 2018-06-13 03:12:10 +0200 | [diff] [blame] | 62 | android:key="digital_clock_settings" |
| 63 | android:title="@string/digital_clock_settings_title" |
| 64 | android:summary="@string/digital_clock_settings_summary" |
| 65 | android:fragment="org.omnirom.omnigears.DigitalClockSettings" /> |
| 66 | |
| 67 | <Preference |
maxwen | 9ad218e | 2018-06-08 01:23:30 +0200 | [diff] [blame] | 68 | android:key="omni_clock_settings" |
| 69 | android:title="@string/omni_clock_settings_title" |
| 70 | android:summary="@string/omni_clock_settings_summary" |
| 71 | android:fragment="org.omnirom.omnigears.OmniClockSettings" /> |
enzoo96 | 95f6b3b | 2018-04-11 21:40:34 +0000 | [diff] [blame] | 72 | </PreferenceScreen> |
| 73 | |