1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-09-27 00:38:01 +02:00
Gadgetbridge/app/src/main/res/xml/devicesettings_hydration_reminder.xml

22 lines
1021 B
XML
Raw Normal View History

2020-10-05 22:20:20 +02:00
<?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceScreen
2021-07-06 09:24:12 +02:00
android:icon="@drawable/ic_drink"
2020-10-05 22:20:20 +02:00
android:key="screen_hydration_reminder"
android:persistent="false"
android:summary="@string/lefun_prefs_hydration_reminder_summary"
android:title="@string/lefun_prefs_hydration_reminder_title">
<SwitchPreferenceCompat
2020-10-05 22:20:20 +02:00
android:defaultValue="false"
android:key="pref_hydration_switch"
android:layout="@layout/preference_checkbox"
2020-10-05 22:20:20 +02:00
android:title="@string/lefun_prefs_hydration_reminder_title" />
<EditTextPreference
android:defaultValue="60"
android:key="pref_hydration_period"
android:summary="@string/lefun_prefs_hydration_reminder_summary"
android:title="@string/lefun_prefs_hydration_reminder_interval_title"/>
</PreferenceScreen>
</androidx.preference.PreferenceScreen>