summaryrefslogtreecommitdiff
path: root/app/src/main/res/xml/feed_settings.xml
blob: 10b688801b1442f081777a50ba67850c37db7db4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
        xmlns:android="http://schemas.android.com/apk/res/android">

    <SwitchPreference
            android:key="keepUpdated"
            android:title="@string/keep_updated"
            android:summary="@string/keep_updated_summary"/>

    <Preference
            android:key="authentication"
            android:title="@string/authentication_label"
            android:summary="@string/authentication_descr"/>

    <ListPreference
            android:entries="@array/spnAutoDeleteItems"
            android:entryValues="@array/spnAutoDeleteValues"
            android:title="@string/auto_delete_label"
            android:key="autoDelete"/>

    <ListPreference
            android:entries="@array/spnVolumeReductionItems"
            android:entryValues="@array/spnVolumeReductionValues"
            android:summary="Turn down volume for episodes of this feed:  \%s"
            android:title="@string/feed_volume_reduction"
            android:defaultValue="off"
            android:key="volumeReduction"/>

    <PreferenceCategory android:title="@string/auto_download_settings_label">
        <SwitchPreference
                android:key="autoDownload"
                android:title="@string/auto_download_label"/>
        <Preference
                android:key="episodeFilter"
                android:title="@string/episode_filters_label"
                android:summary="@string/episode_filters_description"/>
    </PreferenceCategory>
</PreferenceScreen>