summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/activity_settings.xml
blob: d3169a5bf10c499579d21c59fc1f7afb1466c31c (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat 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:orientation="vertical">

    <ScrollView
        android:id="@+id/button_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <androidx.appcompat.widget.LinearLayoutCompat
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:padding="24dp">

            <com.google.android.material.button.MaterialButton
                android:id="@+id/set_timelines"
                style="@style/Widget.MaterialComponents.Button.OutlinedButton"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:paddingVertical="12dp"
                android:text="@string/settings_category_label_timelines"
                android:textAlignment="textStart"
                android:textColor="@color/cyanea_accent_dark_reference"
                app:iconTint="@color/cyanea_accent_dark_reference"
                app:icon="@drawable/ic_baseline_navigate_next_24"
                app:iconGravity="end"
                app:strokeColor="@color/cyanea_accent_dark_reference" />

            <com.google.android.material.button.MaterialButton
                android:id="@+id/set_notifications"
                style="@style/Widget.MaterialComponents.Button.OutlinedButton"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="24dp"
                android:paddingVertical="12dp"
                android:text="@string/notifications"
                android:textAlignment="textStart"
                android:textColor="@color/cyanea_accent_dark_reference"
                app:iconTint="@color/cyanea_accent_dark_reference"
                app:icon="@drawable/ic_baseline_navigate_next_24"
                app:iconGravity="end"
                app:strokeColor="@color/cyanea_accent_dark_reference" />

            <com.google.android.material.button.MaterialButton
                android:id="@+id/set_interface"
                style="@style/Widget.MaterialComponents.Button.OutlinedButton"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="24dp"
                android:paddingVertical="12dp"
                android:text="@string/settings_category_label_interface"
                android:textAlignment="textStart"
                android:textColor="@color/cyanea_accent_dark_reference"
                app:iconTint="@color/cyanea_accent_dark_reference"
                app:icon="@drawable/ic_baseline_navigate_next_24"
                app:iconGravity="end"
                app:strokeColor="@color/cyanea_accent_dark_reference" />

            <com.google.android.material.button.MaterialButton
                android:id="@+id/set_compose"
                style="@style/Widget.MaterialComponents.Button.OutlinedButton"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="24dp"
                android:paddingVertical="12dp"
                android:text="@string/compose"
                android:textAlignment="textStart"
                android:textColor="@color/cyanea_accent_dark_reference"
                app:iconTint="@color/cyanea_accent_dark_reference"
                app:icon="@drawable/ic_baseline_navigate_next_24"
                app:iconGravity="end"
                app:strokeColor="@color/cyanea_accent_dark_reference" />

            <com.google.android.material.button.MaterialButton
                android:id="@+id/set_privacy"
                style="@style/Widget.MaterialComponents.Button.OutlinedButton"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="24dp"
                android:paddingVertical="12dp"
                android:text="@string/action_privacy"
                android:textAlignment="textStart"
                android:textColor="@color/cyanea_accent_dark_reference"
                app:iconTint="@color/cyanea_accent_dark_reference"
                app:icon="@drawable/ic_baseline_navigate_next_24"
                app:iconGravity="end"
                app:strokeColor="@color/cyanea_accent_dark_reference" />


            <com.google.android.material.button.MaterialButton
                android:id="@+id/set_theming"
                style="@style/Widget.MaterialComponents.Button.OutlinedButton"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="24dp"
                android:paddingVertical="12dp"
                android:text="@string/theming"
                android:textAlignment="textStart"
                android:textColor="@color/cyanea_accent_dark_reference"
                app:iconTint="@color/cyanea_accent_dark_reference"
                app:icon="@drawable/ic_baseline_navigate_next_24"
                app:iconGravity="end"
                app:strokeColor="@color/cyanea_accent_dark_reference" />

            <com.google.android.material.button.MaterialButton
                android:id="@+id/set_administration"
                style="@style/Widget.MaterialComponents.Button.OutlinedButton"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="24dp"
                android:paddingVertical="12dp"
                android:text="@string/administration"
                android:textAlignment="textStart"
                android:textColor="@color/cyanea_accent_dark_reference"
                app:iconTint="@color/cyanea_accent_dark_reference"
                app:icon="@drawable/ic_baseline_navigate_next_24"
                app:iconGravity="end"
                app:strokeColor="@color/cyanea_accent_dark_reference" />

            <com.google.android.material.button.MaterialButton
                android:id="@+id/set_language"
                style="@style/Widget.MaterialComponents.Button.OutlinedButton"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="24dp"
                android:paddingVertical="12dp"
                android:text="@string/languages"
                android:textAlignment="textStart"
                android:textColor="@color/cyanea_accent_dark_reference"
                app:iconTint="@color/cyanea_accent_dark_reference"
                app:icon="@drawable/ic_baseline_navigate_next_24"
                app:iconGravity="end"
                app:strokeColor="@color/cyanea_accent_dark_reference" />
        </androidx.appcompat.widget.LinearLayoutCompat>
    </ScrollView>

    <androidx.fragment.app.FragmentContainerView
        android:id="@+id/fragment_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:visibility="gone" />
</androidx.appcompat.widget.LinearLayoutCompat>