blob: f63995811e911b1a369640be8f3deac8e481f3d6 [file] [log] [blame]
maxwencd7421a2015-08-03 00:43:36 +02001<?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">
19
20 <PreferenceCategory
Hernán Castañón Álvarez48f27ce2015-12-06 13:19:50 +010021 android:key="lockscreen_shortcut"
22 android:title="@string/lockscreen_shortcut_title" >
23
maxwen082d8472016-02-18 02:12:31 +010024 <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 Álvarez48f27ce2015-12-06 13:19:50 +010029 <com.android.settings.preference.SecureCheckBoxPreference
30 android:key="lockscreen_voice_shortcut"
31 android:title="@string/lockscreen_voice_shortcut_title"
32 android:summary="@string/lockscreen_voice_shortcut_summary"
maxwen082d8472016-02-18 02:12:31 +010033 android:defaultValue="true"
34 android:dependency="lockscreen_shortcuts_enable" />
Hernán Castañón Álvarez48f27ce2015-12-06 13:19:50 +010035
36 </PreferenceCategory>
37
38 <PreferenceCategory
maxwencd7421a2015-08-03 00:43:36 +020039 android:key="lockscreen_wallpaper"
40 android:title="@string/lockscreen_wallpaper_title" >
41
42 <Preference
43 android:key="lockscreen_wallpaper_set"
44 android:title="@string/lockscreen_wallpaper_set_title"
45 android:persistent="false"/>
46
47 <Preference
48 android:key="lockscreen_wallpaper_clear"
49 android:title="@string/lockscreen_wallpaper_clear_title"
50 android:persistent="false"/>
51
52 </PreferenceCategory>
maxwen082d8472016-02-18 02:12:31 +010053
54 <PreferenceCategory
55 android:key="lockscreen_clock"
56 android:title="@string/lockscreen_clock" >
57
58 <com.android.settings.preference.SystemSettingSwitchPreference
59 android:key="lockscreen_clock_enable"
60 android:title="@string/lockscreen_clock_enable_title"
61 android:defaultValue="true" />
62
63 <CheckBoxPreference
64 android:key="lockscreen_clock_display_time"
65 android:title="@string/lockscreen_clock_display_time_title"
66 android:persistent="false"
67 android:defaultValue="true"
68 android:dependency="lockscreen_clock_enable" />
69
70 <CheckBoxPreference
71 android:key="lockscreen_clock_display_date"
72 android:title="@string/lockscreen_clock_display_date_title"
73 android:persistent="false"
74 android:defaultValue="true"
75 android:dependency="lockscreen_clock_enable" />
76
77 <CheckBoxPreference
78 android:key="lockscreen_clock_display_alarm"
79 android:title="@string/lockscreen_clock_display_alarm_title"
80 android:persistent="false"
81 android:defaultValue="true"
82 android:dependency="lockscreen_clock_enable" />
83
84 <org.omnirom.omnigears.preference.FontPreference
85 android:key="lockscreen_clock_font"
86 android:title="@string/lockscreen_clock_font_title"
87 android:persistent="false"
88 android:dependency="lockscreen_clock_enable" />
89
90 <org.omnirom.omnigears.preference.ColorPickerPreference
91 android:key="lockscreen_clock_color"
92 android:title="@string/lockscreen_clock_color_title"
93 android:persistent="false"
94 android:dependency="lockscreen_clock_enable" />
95
96 <org.omnirom.omnigears.preference.NumberPickerPreference
97 android:key="lockscreen_clock_size"
98 android:title="@string/lockscreen_clock_size_title"
99 android:persistent="false"
100 android:dependency="lockscreen_clock_enable" />
101
102 <com.android.settings.preference.SystemCheckBoxPreference
103 android:key="lockscreen_clock_shadow"
104 android:title="@string/lockscreen_clock_shadow_title"
105 android:defaultValue="false"
106 android:dependency="lockscreen_clock_enable" />
107
108 </PreferenceCategory>
maxwencd7421a2015-08-03 00:43:36 +0200109</PreferenceScreen>