2019-08-21 10:21:17 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
app:defaultValue="true"
|
|
|
|
app:key="enable_notification"
|
2020-01-31 15:09:46 +01:00
|
|
|
app:icon="@drawable/ic_outline_notifications_24dp"
|
2019-08-21 10:21:17 +02:00
|
|
|
app:title="@string/settings_notification_enable_notification_title"/>
|
|
|
|
|
|
|
|
<ListPreference
|
2019-08-22 03:45:27 +02:00
|
|
|
app:defaultValue="1"
|
2019-08-21 10:21:17 +02:00
|
|
|
app:entries="@array/settings_notification_interval"
|
|
|
|
app:entryValues="@array/settings_notification_interval_values"
|
|
|
|
app:key="notificaiton_interval"
|
2020-02-20 05:27:51 +01:00
|
|
|
app:icon="@drawable/ic_outline_access_time_24dp"
|
2019-08-21 10:21:17 +02:00
|
|
|
app:title="@string/settings_notification_interval_title"
|
2019-08-22 03:45:27 +02:00
|
|
|
app:useSimpleSummaryProvider="true"
|
|
|
|
app:isPreferenceVisible="false" />
|
2019-08-21 10:21:17 +02:00
|
|
|
|
|
|
|
</androidx.preference.PreferenceScreen>
|