maxwen | cd7421a | 2015-08-03 00:43:36 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2015 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"> |
Marko Man | 579ef01 | 2016-10-07 08:58:06 +0200 | [diff] [blame^] | 19 | <!-- |
maxwen | cd7421a | 2015-08-03 00:43:36 +0200 | [diff] [blame] | 20 | <PreferenceCategory |
Hernán Castañón Álvarez | 48f27ce | 2015-12-06 13:19:50 +0100 | [diff] [blame] | 21 | android:key="lockscreen_shortcut" |
| 22 | android:title="@string/lockscreen_shortcut_title" > |
| 23 | |
maxwen | 082d847 | 2016-02-18 02:12:31 +0100 | [diff] [blame] | 24 | <com.android.settings.preference.SecureSettingSwitchPreference |
| 25 | android:key="lockscreen_shortcuts_enable" |
| 26 | android:title="@string/lockscreen_shortcuts_enable_title" |
| 27 | android:defaultValue="true"/> |
| 28 | |
Hernán Castañón Álvarez | 48f27ce | 2015-12-06 13:19:50 +0100 | [diff] [blame] | 29 | <com.android.settings.preference.SecureCheckBoxPreference |
maxwen | 3217a99 | 2016-03-03 02:45:04 +0100 | [diff] [blame] | 30 | android:key="lockscreen_camera_shortcut_enable" |
| 31 | android:title="@string/lockscreen_camera_shortcut_enable_title" |
| 32 | android:summary="@string/lockscreen_camera_shortcut_enable_summary" |
| 33 | android:defaultValue="true" |
| 34 | android:dependency="lockscreen_shortcuts_enable" /> |
| 35 | |
| 36 | <com.android.settings.preference.SecureCheckBoxPreference |
| 37 | android:key="lockscreen_left_shortcut_enable" |
| 38 | android:title="@string/lockscreen_left_shortcut_enable_title" |
| 39 | android:summary="@string/lockscreen_left_shortcut_enable_summary" |
| 40 | android:defaultValue="true" |
| 41 | android:dependency="lockscreen_shortcuts_enable" /> |
| 42 | |
| 43 | <com.android.settings.preference.SecureCheckBoxPreference |
Hernán Castañón Álvarez | 48f27ce | 2015-12-06 13:19:50 +0100 | [diff] [blame] | 44 | android:key="lockscreen_voice_shortcut" |
| 45 | android:title="@string/lockscreen_voice_shortcut_title" |
| 46 | android:summary="@string/lockscreen_voice_shortcut_summary" |
maxwen | 082d847 | 2016-02-18 02:12:31 +0100 | [diff] [blame] | 47 | android:defaultValue="true" |
maxwen | 3217a99 | 2016-03-03 02:45:04 +0100 | [diff] [blame] | 48 | android:dependency="lockscreen_left_shortcut_enable" /> |
Hernán Castañón Álvarez | 48f27ce | 2015-12-06 13:19:50 +0100 | [diff] [blame] | 49 | |
maxwen | 3217a99 | 2016-03-03 02:45:04 +0100 | [diff] [blame] | 50 | <Preference |
| 51 | android:key="lockscreen_shortcuts" |
| 52 | android:title="@string/lockscreen_shortcuts_title" |
| 53 | android:summary="@string/lockscreen_shortcuts_summary" |
| 54 | android:persistent="false" |
| 55 | android:dependency="lockscreen_shortcuts_enable" /> |
| 56 | </PreferenceCategory> |
Marko Man | 579ef01 | 2016-10-07 08:58:06 +0200 | [diff] [blame^] | 57 | --> |
maxwen | 3217a99 | 2016-03-03 02:45:04 +0100 | [diff] [blame] | 58 | <PreferenceCategory |
| 59 | android:key="lockscreen_other" |
| 60 | android:title="@string/other_category" > |
Marko Man | 579ef01 | 2016-10-07 08:58:06 +0200 | [diff] [blame^] | 61 | <!-- |
maxwen | 3217a99 | 2016-03-03 02:45:04 +0100 | [diff] [blame] | 62 | <com.android.settings.preference.SystemSettingSwitchPreference |
| 63 | android:key="lockscreen_indicator_display" |
| 64 | android:title="@string/lockscreen_indicator_display_title" |
| 65 | android:summary="@string/lockscreen_indicator_display_summary" |
| 66 | android:defaultValue="true" /> |
Marko Man | 579ef01 | 2016-10-07 08:58:06 +0200 | [diff] [blame^] | 67 | --> |
| 68 | <org.omnirom.omnigears.preference.SecureSettingSwitchPreference |
maxwen | f427b5c | 2016-06-12 00:14:53 +0200 | [diff] [blame] | 69 | android:key="lockscreen_qs_disabled" |
| 70 | android:title="@string/lockscreen_qs_disabled_title" |
| 71 | android:summary="@string/lockscreen_qs_disabled_summary"/> |
| 72 | |
Hernán Castañón Álvarez | 48f27ce | 2015-12-06 13:19:50 +0100 | [diff] [blame] | 73 | </PreferenceCategory> |
Marko Man | 579ef01 | 2016-10-07 08:58:06 +0200 | [diff] [blame^] | 74 | <!-- |
Hernán Castañón Álvarez | 48f27ce | 2015-12-06 13:19:50 +0100 | [diff] [blame] | 75 | <PreferenceCategory |
maxwen | cd7421a | 2015-08-03 00:43:36 +0200 | [diff] [blame] | 76 | android:key="lockscreen_wallpaper" |
| 77 | android:title="@string/lockscreen_wallpaper_title" > |
| 78 | |
| 79 | <Preference |
| 80 | android:key="lockscreen_wallpaper_set" |
| 81 | android:title="@string/lockscreen_wallpaper_set_title" |
| 82 | android:persistent="false"/> |
| 83 | |
| 84 | <Preference |
| 85 | android:key="lockscreen_wallpaper_clear" |
| 86 | android:title="@string/lockscreen_wallpaper_clear_title" |
| 87 | android:persistent="false"/> |
| 88 | |
| 89 | </PreferenceCategory> |
maxwen | 082d847 | 2016-02-18 02:12:31 +0100 | [diff] [blame] | 90 | |
| 91 | <PreferenceCategory |
| 92 | android:key="lockscreen_clock" |
| 93 | android:title="@string/lockscreen_clock" > |
| 94 | |
| 95 | <com.android.settings.preference.SystemSettingSwitchPreference |
| 96 | android:key="lockscreen_clock_enable" |
| 97 | android:title="@string/lockscreen_clock_enable_title" |
| 98 | android:defaultValue="true" /> |
| 99 | |
| 100 | <CheckBoxPreference |
| 101 | android:key="lockscreen_clock_display_time" |
| 102 | android:title="@string/lockscreen_clock_display_time_title" |
| 103 | android:persistent="false" |
| 104 | android:defaultValue="true" |
| 105 | android:dependency="lockscreen_clock_enable" /> |
| 106 | |
| 107 | <CheckBoxPreference |
| 108 | android:key="lockscreen_clock_display_date" |
| 109 | android:title="@string/lockscreen_clock_display_date_title" |
| 110 | android:persistent="false" |
| 111 | android:defaultValue="true" |
| 112 | android:dependency="lockscreen_clock_enable" /> |
| 113 | |
| 114 | <CheckBoxPreference |
| 115 | android:key="lockscreen_clock_display_alarm" |
| 116 | android:title="@string/lockscreen_clock_display_alarm_title" |
| 117 | android:persistent="false" |
| 118 | android:defaultValue="true" |
| 119 | android:dependency="lockscreen_clock_enable" /> |
| 120 | |
| 121 | <org.omnirom.omnigears.preference.FontPreference |
| 122 | android:key="lockscreen_clock_font" |
| 123 | android:title="@string/lockscreen_clock_font_title" |
| 124 | android:persistent="false" |
| 125 | android:dependency="lockscreen_clock_enable" /> |
| 126 | |
| 127 | <org.omnirom.omnigears.preference.ColorPickerPreference |
| 128 | android:key="lockscreen_clock_color" |
| 129 | android:title="@string/lockscreen_clock_color_title" |
| 130 | android:persistent="false" |
| 131 | android:dependency="lockscreen_clock_enable" /> |
| 132 | |
| 133 | <org.omnirom.omnigears.preference.NumberPickerPreference |
| 134 | android:key="lockscreen_clock_size" |
| 135 | android:title="@string/lockscreen_clock_size_title" |
| 136 | android:persistent="false" |
| 137 | android:dependency="lockscreen_clock_enable" /> |
| 138 | |
| 139 | <com.android.settings.preference.SystemCheckBoxPreference |
| 140 | android:key="lockscreen_clock_shadow" |
| 141 | android:title="@string/lockscreen_clock_shadow_title" |
| 142 | android:defaultValue="false" |
| 143 | android:dependency="lockscreen_clock_enable" /> |
| 144 | |
| 145 | </PreferenceCategory> |
Marko Man | 579ef01 | 2016-10-07 08:58:06 +0200 | [diff] [blame^] | 146 | --> |
maxwen | cd7421a | 2015-08-03 00:43:36 +0200 | [diff] [blame] | 147 | </PreferenceScreen> |