mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 15:20:31 +05:30
25 lines
921 B
XML
25 lines
921 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||
|
|
||
|
<PreferenceCategory app:title="@string/notifications">
|
||
|
|
||
|
<SwitchPreferenceCompat
|
||
|
android:icon="@drawable/ic_notification"
|
||
|
app:defaultValue="true"
|
||
|
app:key="notification_toggle"
|
||
|
app:title="@string/notify_new_streams"
|
||
|
android:summary="@string/notify_new_streams_summary"/>
|
||
|
|
||
|
<ListPreference
|
||
|
android:icon="@drawable/ic_time"
|
||
|
app:defaultValue="60"
|
||
|
app:entries="@array/checkingFrequency"
|
||
|
app:entryValues="@array/checkingFrequencyValues"
|
||
|
app:key="checking_frequency"
|
||
|
app:title="@string/checking_frequency"
|
||
|
app:useSimpleSummaryProvider="true" />
|
||
|
|
||
|
</PreferenceCategory>
|
||
|
|
||
|
</PreferenceScreen>
|