2018-07-30 18:15:00 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-06-05 12:21:15 +02:00
|
|
|
|
|
|
|
<!--
|
|
|
|
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
|
|
|
|
-->
|
|
|
|
|
2018-07-30 18:15:00 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2025-05-26 12:03:20 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-07-30 18:15:00 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="20dp">
|
|
|
|
|
2025-05-26 12:03:20 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="10dip"
|
|
|
|
android:text="@string/pairing_title"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
|
2018-07-30 18:15:00 +02:00
|
|
|
<ListView
|
2020-07-08 05:48:23 +05:30
|
|
|
android:id="@+id/run_commands_device_list"
|
2018-07-30 18:15:00 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_margin="4dp"
|
|
|
|
android:addStatesFromChildren="true"
|
2021-03-07 10:55:47 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:divider="@null"
|
2025-05-26 12:03:20 +02:00
|
|
|
android:dividerHeight="12dp" />
|
2018-07-30 18:15:00 +02:00
|
|
|
|
2023-06-04 19:20:40 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/no_devices"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="10dip"
|
|
|
|
android:text="@string/device_list_empty"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2023-06-05 12:21:15 +02:00
|
|
|
</LinearLayout>
|