blob: 395c698ba4d0606872f5d009be01105d9544fb0d [file] [log] [blame]
Alex Cruz1c283972018-01-10 16:44:09 -05001<?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"
19 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
20 android:title="@string/lockscreen_item_title"
21 android:key="lockscreen_item">
22
enzoo961327bae2018-04-26 20:06:58 +000023 <org.omnirom.omnigears.preference.SystemSettingSwitchPreference
24 android:key="hide_lockscreen_status_bar"
Alex Cruz1c283972018-01-10 16:44:09 -050025 android:title="@string/hide_lockscreen_status_bar_title"
26 android:summary="@string/hide_lockscreen_status_bar_summary"
27 android:defaultValue="false" />
28
29 <org.omnirom.omnigears.preference.SystemSettingSwitchPreference
30 android:key="hide_lockscreen_clock"
31 android:title="@string/hide_lockscreen_clock_title"
32 android:summary="@string/hide_lockscreen_clock_summary"
33 android:defaultValue="false" />
34
35 <org.omnirom.omnigears.preference.SystemSettingSwitchPreference
36 android:key="hide_lockscreen_date"
37 android:title="@string/hide_lockscreen_date_title"
38 android:summary="@string/hide_lockscreen_date_summary"
39 android:defaultValue="false" />
40
41 <org.omnirom.omnigears.preference.SystemSettingSwitchPreference
42 android:key="hide_lockscreen_alarm"
43 android:title="@string/hide_lockscreen_alarm_title"
44 android:summary="@string/hide_lockscreen_alarm_summary"
45 android:defaultValue="false" />
46
enzoo961327bae2018-04-26 20:06:58 +000047 <org.omnirom.omnigears.preference.SystemSettingSwitchPreference
48 android:key="hide_lockscreen_indicator_display"
49 android:title="@string/hide_lockscreen_indicator_display_title"
50 android:summary="@string/hide_lockscreen_indicator_display_summary"
51 android:defaultValue="false" />
52
enzoo96058195d2018-04-27 11:42:57 +000053 <org.omnirom.omnigears.preference.SystemSettingSwitchPreference
54 android:key="hide_lockscreen_icon"
55 android:title="@string/hide_lockscreen_icon_title"
56 android:summary="@string/hide_lockscreen_icon_summary"
57 android:defaultValue="false" />
58
maxwend2ec4a12018-05-03 02:26:34 +020059 <org.omnirom.omnigears.preference.SystemSettingSwitchPreference
60 android:key="lockscreen_weather"
61 android:title="@string/lockscreen_weather_title"
62 android:summary="@string/lockscreen_weather_summary"
63 android:defaultValue="false" />
64
65 <Preference
66 android:icon="@drawable/ic_info_outline_24dp"
67 android:persistent="false"
68 android:summary="@string/lockscreen_items_aod_info_title" />
Alex Cruz1c283972018-01-10 16:44:09 -050069</PreferenceScreen>
70