mirror of
https://invent.kde.org/network/kdeconnect-android.git
synced 2025-10-06 00:23:01 +02:00
36 lines
1.1 KiB
XML
36 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
SPDX-FileCopyrightText: 2018 Nicolas Fella <nicolas.fella@gmx.de>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
-->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:padding="20dp">
|
|
|
|
<ListView
|
|
android:id="@+id/run_commands_device_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_margin="4dp"
|
|
android:addStatesFromChildren="true"
|
|
android:orientation="vertical"
|
|
android:divider="@null"
|
|
android:dividerHeight="0dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/no_devices"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_margin="10dip"
|
|
android:text="@string/device_list_empty"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:visibility="gone" />
|
|
|
|
</LinearLayout>
|