summaryrefslogtreecommitdiff
path: root/app/src/main/res/xml/preferences_user_interface.xml
blob: 1f36ad736f46f0b212dfd8be78cf568cac7f833b (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
        xmlns:android="http://schemas.android.com/apk/res/android">

    <PreferenceCategory android:title="@string/appearance">
        <ListPreference
                android:entryValues="@array/theme_values"
                android:entries="@array/theme_options"
                android:title="@string/pref_set_theme_title"
                android:key="prefTheme"
                android:summary="@string/pref_set_theme_sum"
                android:defaultValue="system"/>
        <Preference
                android:key="prefHiddenDrawerItems"
                android:summary="@string/pref_nav_drawer_items_sum"
                android:title="@string/pref_nav_drawer_items_title"/>
        <SwitchPreferenceCompat
                android:title="@string/pref_episode_cover_title"
                android:key="prefEpisodeCover"
                android:summary="@string/pref_episode_cover_summary"
                android:defaultValue="true"
                android:enabled="true"/>
    </PreferenceCategory>
    <PreferenceCategory android:title="@string/subscriptions_label">
        <ListPreference
            android:entryValues="@array/nav_drawer_feed_order_values"
            android:entries="@array/nav_drawer_feed_order_options"
            android:title="@string/pref_nav_drawer_feed_order_title"
            android:key="prefDrawerFeedOrder"
            android:summary="@string/pref_nav_drawer_feed_order_sum"
            android:defaultValue="0"/>
        <ListPreference
            android:entryValues="@array/nav_drawer_feed_counter_values"
            android:entries="@array/nav_drawer_feed_counter_options"
            android:title="@string/pref_nav_drawer_feed_counter_title"
            android:key="prefDrawerFeedIndicator"
            android:summary="@string/pref_nav_drawer_feed_counter_sum"
            android:defaultValue="1"/>
        <Preference
            android:title="@string/pref_filter_feed_title"
            android:key="prefFeedFilter"
            android:summary="@string/pref_filter_feed_sum" />
    </PreferenceCategory>
    <PreferenceCategory android:title="@string/external_elements">
        <SwitchPreferenceCompat
                android:defaultValue="false"
                android:enabled="true"
                android:key="prefExpandNotify"
                android:summary="@string/pref_expandNotify_sum"
                android:title="@string/pref_expandNotify_title"/>
        <SwitchPreferenceCompat
                android:defaultValue="true"
                android:enabled="true"
                android:key="prefPersistNotify"
                android:summary="@string/pref_persistNotify_sum"
                android:title="@string/pref_persistNotify_title"/>
        <Preference
                android:key="prefCompactNotificationButtons"
                android:summary="@string/pref_compact_notification_buttons_sum"
                android:title="@string/pref_compact_notification_buttons_title"/>
        <SwitchPreferenceCompat
                android:defaultValue="true"
                android:enabled="true"
                android:key="prefLockscreenBackground"
                android:summary="@string/pref_lockscreen_background_sum"
                android:title="@string/pref_lockscreen_background_title"/>
    </PreferenceCategory>
    <PreferenceCategory android:title="@string/behavior">
        <ListPreference
                android:entryValues="@array/back_button_behavior_values"
                android:entries="@array/back_button_behavior_options"
                android:key="prefBackButtonBehavior"
                android:title="@string/pref_back_button_behavior_title"
                android:summary="@string/pref_back_button_behavior_sum"
                android:defaultValue="default"/>
    </PreferenceCategory>
</PreferenceScreen>