1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2008 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16 17<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 18 xmlns:settings="http://schemas.android.com/apk/res-auto" 19 android:key="lock_settings_picker"> 20 21 <com.android.settingslib.RestrictedPreference 22 android:key="unlock_set_off" 23 android:title="@string/unlock_set_unlock_off_title" 24 android:icon="@drawable/ic_lock_none" 25 android:persistent="false"/> 26 27 <com.android.settingslib.RestrictedPreference 28 android:key="unlock_set_none" 29 android:title="@string/unlock_set_unlock_none_title" 30 android:icon="@drawable/ic_lock_swipe" 31 android:persistent="false"/> 32 33 <com.android.settingslib.RestrictedPreference 34 android:key="unlock_set_pattern" 35 android:title="@string/unlock_set_unlock_pattern_title" 36 android:icon="@drawable/ic_pattern" 37 android:persistent="false"/> 38 39 <com.android.settingslib.RestrictedPreference 40 android:key="unlock_set_pin" 41 android:title="@string/unlock_set_unlock_pin_title" 42 android:icon="@drawable/ic_lock_pin" 43 android:persistent="false"/> 44 45 <com.android.settingslib.RestrictedPreference 46 android:key="unlock_set_password" 47 android:title="@string/unlock_set_unlock_password_title" 48 android:icon="@drawable/ic_password" 49 android:persistent="false"/> 50 51 <com.android.settingslib.RestrictedPreference 52 android:key="unlock_set_managed" 53 android:persistent="false"/> 54 55 <com.android.settingslib.RestrictedPreference 56 android:key="unlock_skip_fingerprint" 57 android:title="@string/fingerprint_unlock_skip_fingerprint" 58 android:persistent="false"/> 59 60 <com.android.settingslib.RestrictedPreference 61 android:key="unlock_skip_face" 62 android:title="@string/face_unlock_skip_face" 63 android:persistent="false"/> 64 65 <com.android.settingslib.RestrictedPreference 66 android:key="unlock_skip_biometrics" 67 android:title="@string/biometrics_unlock_skip_biometrics" 68 android:persistent="false"/> 69 70 <com.android.settingslib.widget.FooterPreference 71 android:key="lock_settings_footer" 72 android:selectable="false" 73 settings:searchable="false"/> 74 75</PreferenceScreen> 76