mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +01:00
38 lines
1.6 KiB
XML
38 lines
1.6 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_chair"
|
|
android:key="screen_longsit"
|
|
android:persistent="false"
|
|
android:summary="@string/mi2_prefs_inactivity_warnings_summary"
|
|
android:title="@string/mi2_prefs_inactivity_warnings">
|
|
|
|
<!-- workaround for missing toolbar -->
|
|
<PreferenceCategory android:title="@string/mi2_prefs_inactivity_warnings_summary" />
|
|
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:key="pref_longsit_switch"
|
|
android:title="@string/mi2_prefs_inactivity_warnings" />
|
|
|
|
<ListPreference
|
|
android:defaultValue="4"
|
|
android:dependency="pref_longsit_switch"
|
|
android:entries="@array/inactivity_minutes"
|
|
android:entryValues="@array/inactivity_minutes_values"
|
|
android:key="pref_longsit_period"
|
|
android:summary="@string/mi2_prefs_inactivity_warnings_summary"
|
|
android:title="@string/mi2_prefs_inactivity_warnings_threshold" />
|
|
|
|
<nodomain.freeyourgadget.gadgetbridge.util.XTimePreference
|
|
android:defaultValue="08:00"
|
|
android:key="pref_longsit_start"
|
|
android:title="@string/mi2_prefs_do_not_disturb_start" />
|
|
|
|
<nodomain.freeyourgadget.gadgetbridge.util.XTimePreference
|
|
android:defaultValue="16:00"
|
|
android:key="pref_longsit_end"
|
|
android:title="@string/mi2_prefs_do_not_disturb_end" />
|
|
</PreferenceScreen>
|
|
</androidx.preference.PreferenceScreen>
|