Welcome to mirror list, hosted at ThFree Co, Russian Federation.

settings.xml « xml « res « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d67622bd5369dadfc7faf0f4defbbe3e33bcd7d (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
<?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">
    <it.niedermann.nextcloud.deck.ui.branding.BrandedPreferenceCategory app:title="@string/simple_synchronization">
        <it.niedermann.nextcloud.deck.ui.branding.BrandedSwitchPreference
            android:defaultValue="@string/pref_value_wifi_and_mobile"
            android:icon="@drawable/ic_network_wifi_grey600_24dp"
            android:key="@string/pref_key_wifi_only"
            android:title="@string/pref_value_wifi_only" />

        <ListPreference
            android:defaultValue="@string/minutes_15"
            android:entries="@array/background_sync_entries"
            android:entryValues="@array/background_sync_values"
            android:icon="@drawable/ic_sync_grey600_24dp"
            android:key="@string/pref_key_background_sync"
            android:summary="%s"
            android:title="@string/settings_background_sync" />
    </it.niedermann.nextcloud.deck.ui.branding.BrandedPreferenceCategory>

    <it.niedermann.nextcloud.deck.ui.branding.BrandedPreferenceCategory android:title="@string/simple_appearance">
        <it.niedermann.nextcloud.deck.ui.branding.BrandedSwitchPreference
            android:defaultValue="@string/pref_value_theme_light"
            android:icon="@drawable/ic_brightness_2_grey600_24dp"
            android:key="@string/pref_key_dark_theme"
            android:title="@string/settings_theme_title" />

        <it.niedermann.nextcloud.deck.ui.branding.BrandedSwitchPreference
            android:icon="@drawable/ic_format_paint_grey600_24dp"
            android:key="@string/pref_key_branding"
            android:title="@string/settings_branding_title"
            app:defaultValue="false" />

        <it.niedermann.nextcloud.deck.ui.branding.BrandedSwitchPreference
            android:icon="@drawable/ic_baseline_compact_24"
            android:key="@string/pref_key_compact"
            android:title="@string/settings_compact_title"
            app:defaultValue="false" />
    </it.niedermann.nextcloud.deck.ui.branding.BrandedPreferenceCategory>
</PreferenceScreen>