mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-08-22 01:51:47 +00:00
44 lines
1.4 KiB
XML
44 lines
1.4 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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:padding="20dp">
|
|
|
|
<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" />
|
|
|
|
<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="12dp" />
|
|
|
|
<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" />
|
|
|
|
</LinearLayout>
|