mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-08-30 21:55:10 +00:00
29 lines
1.2 KiB
XML
29 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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/shareplugin_preferences">
|
|
|
|
<SwitchPreferenceCompat
|
|
android:id="@+id/share_destination_customize"
|
|
android:defaultValue="false"
|
|
android:key="share_destination_custom"
|
|
android:summaryOff="@string/share_destination_customize_summary_disabled"
|
|
android:summaryOn="@string/share_destination_customize_summary_enabled"
|
|
android:title="@string/share_destination_customize" />
|
|
|
|
<Preference
|
|
android:id="@+id/share_destination_folder_preference"
|
|
android:key="share_destination_folder_preference"
|
|
android:title="@string/share_destination_folder_preference" />
|
|
|
|
<SwitchPreferenceCompat
|
|
android:id="@+id/share_notification_preference"
|
|
android:defaultValue="true"
|
|
android:key="share_notification_preference"
|
|
android:summary="@string/share_notification_preference_summary"
|
|
android:title="@string/share_notification_preference" />
|
|
|
|
</PreferenceScreen>
|