mirror of
https://invent.kde.org/network/kdeconnect-android.git
synced 2025-10-06 00:23:01 +02:00
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
SPDX-FileCopyrightText: 2021 Maxim Leshchenko <cnmaks90@gmail.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
-->
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:context="org.kde.kdeconnect.Plugins.SharePlugin.ShareActivity">
|
|
|
|
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
android:layout_height="match_parent"
|
|
android:layout_width="match_parent">
|
|
|
|
<include
|
|
layout="@layout/devices_list"
|
|
android:id="@+id/devices_list_layout" />
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|