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: 6a24dce9efbc3525a4cc781461a7a0679265cc02 (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
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">

    <SwitchPreference
        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" />

    <SwitchPreference
        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" />
</PreferenceScreen>