aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/xml/comment_preferences.xml
blob: caf95e8fde588acbdd344e7056cc56b7012bee74 (plain) (blame)
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
<?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">

    <ml.docilealligator.infinityforreddit.customviews.CustomFontSwitchPreference
        app:defaultValue="false"
        app:key="show_top_level_comments_first"
        app:title="@string/settings_show_top_level_comments_first_title" />

    <ml.docilealligator.infinityforreddit.customviews.CustomFontSwitchPreference
        app:defaultValue="false"
        app:key="show_comment_divider"
        app:title="@string/settings_show_comment_divider_title" />

    <ml.docilealligator.infinityforreddit.customviews.CustomFontListPreference
        app:defaultValue="0"
        app:key="comment_divider_type"
        android:title="@string/settings_comment_divider_type"
        app:entries="@array/settings_comment_divider_type"
        app:entryValues="@array/settings_comment_divider_type_values"
        app:useSimpleSummaryProvider="true"
        app:isPreferenceVisible="false" />

    <ml.docilealligator.infinityforreddit.customviews.CustomFontSwitchPreference
        app:defaultValue="false"
        app:key="show_only_one_comment_level_indicator"
        app:title="@string/settings_show_only_one_comment_level_indicator" />

    <ml.docilealligator.infinityforreddit.customviews.CustomFontSwitchPreference
        app:defaultValue="false"
        app:key="comment_toolbar_hidden"
        app:title="@string/settings_comment_toolbar_hidden" />

    <ml.docilealligator.infinityforreddit.customviews.CustomFontSwitchPreference
        app:defaultValue="true"
        app:key="comment_toolbar_hide_on_click"
        app:title="@string/settings_comment_toolbar_hide_on_click" />

    <ml.docilealligator.infinityforreddit.customviews.CustomFontSwitchPreference
        app:defaultValue="false"
        app:key="fully_collapse_comment"
        android:title="@string/settings_fully_collapse_comment_title" />

    <ml.docilealligator.infinityforreddit.customviews.CustomFontSwitchPreference
        app:defaultValue="false"
        app:key="show_author_avatar"
        android:title="@string/settings_show_author_avatar_title" />

    <ml.docilealligator.infinityforreddit.customviews.CustomFontSwitchPreference
        app:defaultValue="false"
        app:key="hide_comment_awards"
        android:title="@string/settings_hide_comment_awards_title" />

    <ml.docilealligator.infinityforreddit.customviews.CustomFontSwitchPreference
        app:defaultValue="false"
        app:key="always_show_child_comment_count"
        android:title="@string/settings_always_show_child_comment_count_title" />

    <ml.docilealligator.infinityforreddit.customviews.CustomFontSwitchPreference
        app:defaultValue="false"
        app:key="hide_the_number_of_votes_in_comments"
        app:title="@string/settings_hide_the_number_of_votes" />

    <ml.docilealligator.infinityforreddit.customviews.CustomFontSeekBarPreference
        app:defaultValue="5"
        android:max="10"
        app:key="show_fewer_toolbar_options_threshold"
        app:title="@string/settings_show_fewer_toolbar_options_threshold_title"
        app:singleLineTitle="false" />

</PreferenceScreen>