maxwen | 30bb965 | 2018-08-31 11:13:37 +0200 | [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 |
| 18 | xmlns:android="http://schemas.android.com/apk/res/android" |
xyyx | 12cbc6c | 2018-09-17 18:38:12 -0600 | [diff] [blame] | 19 | xmlns:settings="http://schemas.android.com/apk/res/com.android.settings" |
maxwen | 30bb965 | 2018-08-31 11:13:37 +0200 | [diff] [blame] | 20 | android:title="@string/lockscreen_item_title" |
| 21 | android:key="lockscreen_item"> |
| 22 | |
pimpmaneaton | c0502a1 | 2018-09-17 12:58:06 -0600 | [diff] [blame] | 23 | <org.omnirom.omnilib.preference.SecureSettingSwitchPreference |
| 24 | android:key="lockscreen_visualizer_enabled" |
xyyx | 12cbc6c | 2018-09-17 18:38:12 -0600 | [diff] [blame] | 25 | android:title="@string/lockscreen_visualizer_enable" |
| 26 | android:summary="@string/lockscreen_visualizer_enable_summary" |
pimpmaneaton | c0502a1 | 2018-09-17 12:58:06 -0600 | [diff] [blame] | 27 | android:defaultValue="false" /> |
| 28 | |
maxwen | 30bb965 | 2018-08-31 11:13:37 +0200 | [diff] [blame] | 29 | <org.omnirom.omnilib.preference.SystemSettingSwitchPreference |
mydongistiny | 7e26505 | 2018-09-17 13:12:27 -0600 | [diff] [blame] | 30 | android:key="lock_screen_visualizer_use_custom_color" |
| 31 | android:title="@string/lockscreen_visualizer_enable_custom" |
| 32 | android:summary="@string/lockscreen_visualizer_enable_custom_summary" |
| 33 | android:dependency="lockscreen_visualizer_enabled" |
| 34 | android:defaultValue="false" /> |
| 35 | |
| 36 | <org.omnirom.omnilib.preference.ColorSelectPreference |
| 37 | android:key="lock_screen_visualizer_custom_color" |
xyyx | 12cbc6c | 2018-09-17 18:38:12 -0600 | [diff] [blame] | 38 | android:title="@string/lockscreen_visualizer_custom_color" |
mydongistiny | 7e26505 | 2018-09-17 13:12:27 -0600 | [diff] [blame] | 39 | android:dependency="lock_screen_visualizer_use_custom_color" |
xyyx | 12cbc6c | 2018-09-17 18:38:12 -0600 | [diff] [blame] | 40 | settings:multiColor="true" |
| 41 | settings:withAlpha="true" |
mydongistiny | 7e26505 | 2018-09-17 13:12:27 -0600 | [diff] [blame] | 42 | android:defaultValue="0xffffffff" |
| 43 | android:dialogTitle="@string/lockscreen_visualizer_custom_color" /> |
| 44 | |
| 45 | <org.omnirom.omnilib.preference.SystemSettingSwitchPreference |
xyyx | ab10118 | 2018-09-25 06:48:06 -0600 | [diff] [blame^] | 46 | android:key="lockscreen_battery_info" |
| 47 | android:title="@string/lockscreen_battery_info_title" |
| 48 | android:summary="@string/lockscreen_battery_info_summary" |
| 49 | android:defaultValue="true" /> |
| 50 | |
| 51 | <org.omnirom.omnilib.preference.SystemSettingSwitchPreference |
maxwen | 30bb965 | 2018-08-31 11:13:37 +0200 | [diff] [blame] | 52 | android:key="lockscreen_weather_enabled" |
| 53 | android:title="@string/lockscreen_weather_title" |
| 54 | android:summary="@string/lockscreen_weather_summary" |
| 55 | android:defaultValue="false" /> |
| 56 | |
| 57 | <Preference |
| 58 | android:icon="@drawable/ic_info_outline_24dp" |
| 59 | android:persistent="false" |
| 60 | android:summary="@string/lockscreen_items_aod_info_title" /> |
| 61 | </PreferenceScreen> |
| 62 | |