summaryrefslogtreecommitdiffstats
path: root/mobile/android/fenix/app/src/main/res/xml/customization_preferences.xml
blob: f1e1ea05e25b8387b7c52377d89c5b936a86b387 (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
<?xml version="1.0" encoding="utf-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:key="@string/pref_key_customization_preference_screen" >
    <androidx.preference.PreferenceCategory
        android:layout="@layout/preference_cat_style"
        android:title="@string/preferences_theme"
        app:iconSpaceReserved="false">
        <org.mozilla.fenix.settings.RadioButtonPreference
            android:defaultValue="@bool/underAPI28"
            android:key="@string/pref_key_light_theme"
            android:title="@string/preference_light_theme" />

        <org.mozilla.fenix.settings.RadioButtonPreference
            android:defaultValue="false"
            android:key="@string/pref_key_dark_theme"
            android:title="@string/preference_dark_theme" />

        <org.mozilla.fenix.settings.RadioButtonPreference
            android:defaultValue="false"
            android:key="@string/pref_key_auto_battery_theme"
            android:title="@string/preference_auto_battery_theme"
            app:isPreferenceVisible="@bool/underAPI28" />

        <org.mozilla.fenix.settings.RadioButtonPreference
            android:defaultValue="@bool/API28"
            android:key="@string/pref_key_follow_device_theme"
            android:title="@string/preference_follow_device_theme"
            app:isPreferenceVisible="@bool/API28" />
    </androidx.preference.PreferenceCategory>

    <androidx.preference.PreferenceCategory
        android:layout="@layout/preference_cat_style"
        android:title="@string/preferences_toolbar"
        android:key="@string/pref_key_customization_category_toolbar"
        app:iconSpaceReserved="false">
        <org.mozilla.fenix.settings.RadioButtonPreference
            android:key="@string/pref_key_toolbar_top"
            android:title="@string/preference_top_toolbar" />
        <org.mozilla.fenix.settings.RadioButtonPreference
            android:key="@string/pref_key_toolbar_bottom"
            android:title="@string/preference_bottom_toolbar" />
    </androidx.preference.PreferenceCategory>

    <androidx.preference.PreferenceCategory
        android:layout="@layout/preference_cat_style"
        android:title="@string/preferences_gestures"
        app:iconSpaceReserved="false">
        <androidx.preference.SwitchPreference
            android:key="@string/pref_key_website_pull_to_refresh"
            android:title="@string/preference_gestures_website_pull_to_refresh"
            app:isPreferenceVisible="false" />
        <androidx.preference.SwitchPreference
            android:key="@string/pref_key_dynamic_toolbar"
            android:title="@string/preference_gestures_dynamic_toolbar" />
        <androidx.preference.SwitchPreference
            android:key="@string/pref_key_swipe_toolbar_switch_tabs"
            android:title="@string/preference_gestures_swipe_toolbar_switch_tabs" />
        <androidx.preference.SwitchPreference
            android:key="@string/pref_key_swipe_toolbar_show_tabs"
            android:title="@string/preference_gestures_swipe_toolbar_show_tabs"
            app:isPreferenceVisible="false" />
    </androidx.preference.PreferenceCategory>
</androidx.preference.PreferenceScreen>