57 lines
2.5 KiB
XML
57 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2019-2024 Evolution X
|
|
SPDX-License-Identifier: Apache-2.0
|
|
-->
|
|
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
|
|
android:title="@string/lock_screen_title">
|
|
|
|
<PreferenceCategory
|
|
android:key="lock_screen_interface_category"
|
|
android:title="@string/lock_screen_interface_category">
|
|
|
|
<!-- Charging stats -->
|
|
<org.evolution.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="lockscreen_battery_info"
|
|
android:title="@string/lock_screen_charging_stats_title"
|
|
android:summary="@string/lock_screen_charging_stats_summary"
|
|
android:defaultValue="true" />
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
android:key="lock_screen_fingerprint_category"
|
|
android:title="@string/lock_screen_fingerprint_category">
|
|
|
|
<!-- Fingerprint unlock ripple animation -->
|
|
<org.evolution.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="enable_ripple_effect"
|
|
android:title="@string/lock_screen_fingerprint_ripple_title"
|
|
android:summary="@string/lock_screen_fingerprint_ripple_summary"
|
|
android:defaultValue="true" />
|
|
|
|
<!-- Screen-Off UDFPS -->
|
|
<org.evolution.settings.preferences.SecureSettingSwitchPreference
|
|
android:key="screen_off_udfps_enabled"
|
|
android:title="@string/lock_screen_screen_off_udfps_title"
|
|
android:summary="@string/lock_screen_screen_off_udfps_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<!-- Authentication success vibration -->
|
|
<org.evolution.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="fp_success_vibrate"
|
|
android:title="@string/lock_screen_fingerprint_success_vibration_title"
|
|
android:summary="@string/lock_screen_fingerprint_success_vibration_summary"
|
|
android:defaultValue="true" />
|
|
|
|
<!-- Authentication error vibration -->
|
|
<org.evolution.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="fp_error_vibrate"
|
|
android:title="@string/lock_screen_fingerprint_error_vibration_title"
|
|
android:summary="@string/lock_screen_fingerprint_error_vibration_summary"
|
|
android:defaultValue="true" />
|
|
</PreferenceCategory>
|
|
</PreferenceScreen>
|