summaryrefslogtreecommitdiff
path: root/app/src/main/res/xml/preferences.xml
blob: 7c5012899afe8d5a62e28fed48a6519121efd66b (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
<?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:summary="@string/user_interface_sum"
            android:icon="@drawable/ic_appearance" />

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

    <Preference
            android:key="prefScreenNetwork"
            android:title="@string/network_pref"
            android:summary="@string/network_pref_sum"
            android:icon="@drawable/ic_network" />

    <Preference
            android:key="prefScreenSynchronization"
            android:title="@string/synchronization_pref"
            android:summary="@string/synchronization_sum"
            android:icon="@drawable/ic_cloud" />

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

    <Preference
            android:key="notifications"
            android:title="@string/notification_pref_fragment"
            android:icon="@drawable/ic_notifications"/>

    <Preference
            android:key="statistics"
            android:title="@string/statistics_label"
            android:icon="@drawable/ic_statistics" />

    <PreferenceCategory
            android:key="project"
            android:title="@string/project_pref">
        <Preference
            android:key="prefDocumentation"
            android:title="@string/documentation_support"
            android:icon="@drawable/ic_questionmark" />
        <Preference
            android:key="prefViewForum"
            android:title="@string/visit_user_forum"
            android:icon="@drawable/ic_chat" />
        <Preference
            android:key="prefContribute"
            android:title="@string/pref_contribute"
            android:icon="@drawable/ic_contribute" />
        <Preference
            android:key="prefSendBugReport"
            android:title="@string/bug_report_title"
            android:icon="@drawable/ic_bug" />
        <Preference
            android:key="prefAbout"
            android:title="@string/about_pref"
            android:icon="@drawable/ic_info" />
    </PreferenceCategory>
</PreferenceScreen>