24 lines
866 B
XML
24 lines
866 B
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>
|
|
</PreferenceScreen>
|