1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-23 13:30:48 +02:00
Gadgetbridge/app/src/main/res/xml/devicesettings_sleep_mode.xml
2024-03-31 07:46:47 +00:00

26 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceScreen
android:icon="@drawable/ic_activity_sleep"
android:key="pref_screen_sleep_mode"
android:persistent="false"
android:title="@string/pref_sleep_mode_title">
<SwitchPreferenceCompat
android:defaultValue="false"
android:icon="@drawable/ic_activity_sleep"
android:key="pref_sleep_mode_sleep_screen"
android:layout="@layout/preference_checkbox"
android:summary="@string/pref_sleep_mode_sleep_screen_summary"
android:title="@string/pref_sleep_mode_sleep_screen_title" />
<SwitchPreferenceCompat
android:defaultValue="false"
android:icon="@drawable/ic_auto_awesome"
android:key="pref_sleep_mode_smart_enable"
android:layout="@layout/preference_checkbox"
android:summary="@string/pref_sleep_mode_smart_enable_summary"
android:title="@string/pref_sleep_mode_smart_enable_title" />
</PreferenceScreen>
</androidx.preference.PreferenceScreen>