summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/xml/pref_categories.xml
blob: 826f560c5625eb93df6b1da98801aec3214250fe (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Preference
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:title="@string/account"
        app:icon="@drawable/ic_baseline_account_circle_24"
        app:key="@string/pref_category_key_account" />

    <Preference
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:title="@string/settings_category_label_timelines"
        app:icon="@drawable/ic_timeline"
        app:key="@string/pref_category_key_timeline" />

    <Preference
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:title="@string/notifications"
        app:icon="@drawable/ic_baseline_notifications_24"
        app:key="@string/pref_category_key_notifications" />

    <Preference
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:title="@string/settings_category_label_interface"
        app:icon="@drawable/ic_style"
        app:key="@string/pref_category_key_interface" />

    <Preference
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:title="@string/compose"
        app:icon="@drawable/ic_baseline_edit_24"
        app:key="@string/pref_category_key_compose" />

    <Preference
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:title="@string/action_privacy"
        app:icon="@drawable/ic_shield"
        app:key="@string/pref_category_key_privacy" />

    <Preference
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:title="@string/theming"
        app:icon="@drawable/ic_theming"
        app:key="@string/pref_category_key_theming" />

    <!--
    <Preference
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:title="@string/administration"
        app:icon="@drawable/ic_admin"
        app:key="@string/pref_category_key_administration" />
        -->

    <Preference
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:title="@string/languages"
        app:icon="@drawable/ic_language"
        app:key="@string/pref_category_key_languages" />


    <Preference
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:title="@string/set_extand_extra_features_title"
        app:icon="@drawable/ic_baseline_extension_24"
        app:key="@string/pref_category_key_extra_features" />

    <Preference
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:title="@string/export_settings"
        app:icon="@drawable/ic_baseline_keyboard_arrow_down_24"
        app:key="@string/pref_export_settings" />

    <Preference
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:title="@string/import_settings"
        app:icon="@drawable/ic_baseline_keyboard_arrow_up_24"
        app:key="@string/pref_import_settings" />

</androidx.preference.PreferenceScreen>