1<!-- 2 ~ Copyright (C) 2023 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<PreferenceScreen 17 xmlns:android="http://schemas.android.com/apk/res/android" 18 xmlns:settings="http://schemas.android.com/apk/res-auto" 19 android:title="@string/private_space_lock_title" 20 settings:searchable="false" > 21 22 <com.android.settingslib.widget.TopIntroPreference 23 android:title="@string/private_space_one_lock_summary" 24 settings:searchable="false" /> 25 26 <com.android.settingslib.widget.MainSwitchPreference 27 android:key="private_lock_unification" 28 android:title="@string/private_space_screen_lock_title" 29 settings:searchable="false" /> 30 31 <Preference 32 android:key="change_private_space_lock" 33 android:title="@string/private_space_lock_title" 34 android:summary="@string/unlock_set_unlock_mode_pattern" 35 settings:searchable="false" /> 36 37 <com.android.settingslib.RestrictedPreference 38 android:key="private_space_biometrics" 39 android:title="@string/private_space_biometric_title" 40 android:summary="@string/summary_placeholder" 41 android:fragment="com.android.settings.privatespace.onelock.PrivateSpaceBiometricSettings" 42 settings:searchable="false" /> 43 44</PreferenceScreen> 45