mirror of
https://invent.kde.org/network/kdeconnect-android.git
synced 2025-10-06 00:23:01 +02:00
32 lines
1.2 KiB
XML
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>
|