Files
kdeconnect-android/res/xml/mprisplugin_preferences.xml
2023-06-05 12:21:15 +02:00

32 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
SPDX-FileCopyrightText: 2023 Albert Vaca Cintora <albertvaka@gmail.com>
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
-->
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:keep="@xml/mprisplugin_preferences">
<ListPreference
android:id="@+id/mpris_time_preference"
android:defaultValue="@string/mpris_time_default"
android:entries="@array/mpris_time_entries"
android:entryValues="@array/mpris_time_entries_values"
android:key="@string/mpris_time_key"
android:summary="@string/mpris_time_settings_summary"
android:title="@string/mpris_time_settings_title" />
<SwitchPreference
android:id="@+id/mpris_notification_preference"
android:defaultValue="true"
android:key="@string/mpris_notification_key"
android:summary="@string/mpris_notification_settings_summary"
android:title="@string/mpris_notification_settings_title" />
</PreferenceScreen>