summaryrefslogtreecommitdiff
path: root/app/src/main/res/xml/preferences.xml
blob: f1e6092da19bc24b7e90a61135105d3b7497556d (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
<?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">
    <Preference
        android:key="prefScreenInterface"
        android:title="@string/user_interface_label"
        android:icon="@drawable/ic_remove_red_eye_grey600_18dp" />

    <Preference
            android:key="prefScreenPlayback"
            android:title="@string/playback_pref"
            android:icon="@drawable/ic_play_arrow_grey600_24dp" />

    <Preference
            android:key="prefScreenDownloads"
            android:title="@string/downloads_label"
            android:icon="@drawable/ic_file_download_grey600_24dp" />

    <Preference
            android:key="prefScreenServices"
            android:title="@string/services_label"
            android:icon="@drawable/ic_star_grey600_24dp" />

    <Preference
            android:key="prefScreenStorage"
            android:title="@string/storage_pref"
            android:icon="@drawable/ic_filter_grey600_24dp" />

    <Preference
            android:key="prefScreenVarious"
            android:title="Various"
            android:icon="@drawable/ic_cast_disconnect_grey600_36dp" />

    <PreferenceCategory android:title="@string/project_pref">
        <Preference
            android:key="prefFaq"
            android:title="@string/pref_faq"/>
        <Preference
            android:key="prefKnownIssues"
            android:title="@string/pref_known_issues"/>
        <Preference
            android:key="prefSendCrashReport"
            android:title="@string/crash_report_title"
            android:summary="@string/crash_report_sum"/>
        <Preference
            android:key="prefAbout"
            android:title="@string/about_pref"/>
    </PreferenceCategory>
</PreferenceScreen>