2020-04-22 22:36:09 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<PreferenceScreen
|
2021-09-21 16:37:19 +02:00
|
|
|
android:icon="@drawable/ic_chair"
|
2022-03-07 15:13:23 +01:00
|
|
|
android:key="screen_inactivity"
|
2020-04-22 22:36:09 +02:00
|
|
|
android:persistent="false"
|
2020-04-24 22:46:43 +02:00
|
|
|
android:summary="@string/mi2_prefs_inactivity_warnings_summary"
|
|
|
|
android:title="@string/mi2_prefs_inactivity_warnings">
|
2020-04-22 22:36:09 +02:00
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="false"
|
2022-03-07 15:13:23 +01:00
|
|
|
android:key="inactivity_warnings_enable"
|
2022-05-14 22:08:32 +02:00
|
|
|
android:title="@string/mi2_prefs_inactivity_warnings"
|
|
|
|
android:summary="@string/mi2_prefs_inactivity_warnings_summary" />
|
2020-04-22 22:36:09 +02:00
|
|
|
<EditTextPreference
|
|
|
|
android:defaultValue="60"
|
2022-05-14 22:08:32 +02:00
|
|
|
android:dependency="inactivity_warnings_enable"
|
2022-03-07 15:13:23 +01:00
|
|
|
android:key="inactivity_warnings_threshold"
|
2020-04-24 22:46:43 +02:00
|
|
|
android:summary="@string/mi2_prefs_inactivity_warnings_summary"
|
|
|
|
android:title="@string/mi2_prefs_inactivity_warnings_threshold"/>
|
2020-04-22 22:36:09 +02:00
|
|
|
<nodomain.freeyourgadget.gadgetbridge.util.XTimePreference
|
|
|
|
android:defaultValue="06:00"
|
2022-05-14 22:08:32 +02:00
|
|
|
android:dependency="inactivity_warnings_enable"
|
2022-03-07 15:13:23 +01:00
|
|
|
android:key="inactivity_warnings_start"
|
2020-04-22 22:36:09 +02:00
|
|
|
android:title="@string/mi2_prefs_do_not_disturb_start" />
|
|
|
|
|
|
|
|
<nodomain.freeyourgadget.gadgetbridge.util.XTimePreference
|
|
|
|
android:defaultValue="23:00"
|
2022-05-14 22:08:32 +02:00
|
|
|
android:dependency="inactivity_warnings_enable"
|
2022-03-07 15:13:23 +01:00
|
|
|
android:key="inactivity_warnings_end"
|
2020-04-22 22:36:09 +02:00
|
|
|
android:title="@string/mi2_prefs_do_not_disturb_end" />
|
|
|
|
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
|
|
|
|
</androidx.preference.PreferenceScreen>
|