1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2010 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 android:title="@string/security_settings_title"> 19 20 <PreferenceCategory 21 android:key="security_category" 22 android:title="@string/lock_settings_title"> 23 24 <PreferenceScreen 25 android:key="unlock_set_or_change" 26 android:title="@string/unlock_set_unlock_launch_picker_title" 27 android:summary="@string/unlock_set_unlock_mode_biometric_weak" 28 android:persistent="false"/> 29 30 <PreferenceScreen 31 android:key="biometric_weak_improve_matching" 32 android:title="@string/biometric_weak_improve_matching_title"/> 33 34 <SwitchPreference 35 android:key="biometric_weak_liveliness" 36 android:title="@string/biometric_weak_liveliness_title" 37 android:summary="@string/biometric_weak_liveliness_summary"/> 38 39 <SwitchPreference 40 android:key="visiblepattern" 41 android:title="@string/lockpattern_settings_enable_visible_pattern_title"/> 42 43 <ListPreference 44 android:key="lock_after_timeout" 45 android:title="@string/lock_after_timeout" 46 android:summary="@string/lock_after_timeout_summary" 47 android:entries="@array/lock_after_timeout_entries" 48 android:entryValues="@array/lock_after_timeout_values" 49 android:persistent="false"/> 50 51 <SwitchPreference 52 android:key="power_button_instantly_locks" 53 android:title="@string/lockpattern_settings_enable_power_button_instantly_locks"/> 54 55 <PreferenceScreen 56 android:key="owner_info_settings" 57 android:fragment="com.android.settings.OwnerInfoSettings" 58 android:title="@string/owner_info_settings_title" 59 android:summary="@string/owner_info_settings_summary"/> 60 61 </PreferenceCategory> 62 63</PreferenceScreen> 64