summaryrefslogtreecommitdiff
path: root/app/src/main/res/xml/preferences.xml
blob: a774f2aefd86ba66f6f6a42cb1121766bcf7eefc (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
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:search="http://schemas.android.com/apk/res-auto">

    <com.bytehamster.lib.preferencesearch.SearchPreference
            android:key="searchPreference"
            search:textHint="@string/preference_search_hint"
            search:textNoResults="@string/preference_search_no_results"
            search:textClearHistory="@string/preference_search_clear_history" />

    <Preference
            android:key="prefScreenInterface"
            android:title="@string/user_interface_label"
            android:icon="?attr/ic_cellphone_text" />

    <Preference
            android:key="prefScreenPlayback"
            android:title="@string/playback_pref"
            android:icon="?attr/av_play" />

    <Preference
            android:key="prefScreenNetwork"
            android:title="@string/network_pref"
            android:icon="?attr/ic_swap" />

    <Preference
            android:key="prefScreenIntegrations"
            android:title="@string/integrations_label"
            android:icon="?attr/ic_unfav" />

    <Preference
            android:key="prefScreenStorage"
            android:title="@string/storage_pref"
            android:icon="?attr/storage" />

    <Preference
            android:key="statistics"
            android:title="@string/statistics_label"
            android:icon="?attr/statistics" />

    <PreferenceCategory android:title="@string/project_pref">
        <Preference
            android:key="prefFaq"
            android:title="@string/pref_faq"
            android:icon="?attr/ic_question_answer" />
        <Preference
            android:key="prefSendBugReport"
            android:title="@string/bug_report_title"
            android:icon="?attr/ic_bug" />
        <Preference
            android:key="prefAbout"
            android:title="@string/about_pref"
            android:icon="?attr/action_about" />
    </PreferenceCategory>
</PreferenceScreen>