summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/xml/pref_compose.xml
blob: 19fcdf4dd5a3bbd62371b5af53bda019b7d38bb3 (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
<?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"
    android:key="app_prefs">


    <SwitchPreferenceCompat
        app:defaultValue="true"
        app:iconSpaceReserved="false"
        app:key="@string/SET_CAPITALIZE"
        app:singleLineTitle="false"
        app:summary="@string/set_capitalize_indication"
        app:title="@string/set_capitalize" />

    <SwitchPreferenceCompat
        app:defaultValue="true"
        app:iconSpaceReserved="false"
        app:key="@string/SET_PICTURE_COMPRESSED"
        app:singleLineTitle="false"
        app:summary="@string/set_resize_picture_indication"
        app:title="@string/set_resize_picture" />

    <SwitchPreferenceCompat
        app:defaultValue="true"
        app:iconSpaceReserved="false"
        app:key="@string/SET_VIDEO_COMPRESSED"
        app:singleLineTitle="false"
        app:summary="@string/set_resize_video_indication"
        app:title="@string/set_resize_video" />

    <SwitchPreferenceCompat
        app:defaultValue="false"
        app:iconSpaceReserved="false"
        app:key="@string/SET_WATERMARK"
        app:singleLineTitle="false"
        app:summary="@string/set_watermark_indication"
        app:title="@string/set_watermark" />

    <EditTextPreference
        app:dependency="@string/SET_WATERMARK"
        app:key="@string/SET_WATERMARK_TEXT"
        app:useSimpleSummaryProvider="true" />


    <SwitchPreferenceCompat
        app:defaultValue="false"
        app:iconSpaceReserved="false"
        app:key="@string/SET_DISPLAY_EMOJI"
        app:singleLineTitle="false"
        app:title="@string/set_display_emoji" />

    <SwitchPreferenceCompat
        app:defaultValue="true"
        app:iconSpaceReserved="false"
        app:key="@string/SET_SHARE_DETAILS"
        app:singleLineTitle="false"
        app:title="@string/set_share_details" />

    <SwitchPreferenceCompat
        app:defaultValue="true"
        app:iconSpaceReserved="false"
        app:key="@string/SET_RETRIEVE_METADATA_IF_URL_FROM_EXTERAL"
        app:title="@string/set_retrieve_metadata_share_from_extras" />


    <SwitchPreferenceCompat
        app:iconSpaceReserved="false"
        app:key="@string/SET_CUSTOM_SHARING"
        app:summary="@string/settings_title_custom_sharing_indication"
        app:title="@string/settings_title_custom_sharing" />

    <EditTextPreference
        app:dependency="@string/SET_CUSTOM_SHARING"
        app:iconSpaceReserved="false"
        app:key="@string/SET_CUSTOM_SHARING_URL"
        app:summary="@string/settings_custom_sharing_url"
        app:useSimpleSummaryProvider="true" />

    <SwitchPreferenceCompat
        app:iconSpaceReserved="false"
        app:key="@string/SET_FORWARD_TAGS_IN_REPLY"
        app:title="@string/set_forward_tags" />


</androidx.preference.PreferenceScreen>