mirror of
https://invent.kde.org/network/kdeconnect-android.git
synced 2025-10-06 00:23:01 +02:00
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
SPDX-FileCopyrightText: 2017 Zixing Liu <liushuyu@protonmail.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
-->
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/refresh_list_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
>
|
|
|
|
<ListView
|
|
android:id="@+id/devices_list"
|
|
android:scrollbarStyle="outsideOverlay"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:addStatesFromChildren="true"
|
|
android:divider="@null"
|
|
android:padding="@dimen/activity_horizontal_margin"
|
|
android:descendantFocusability="afterDescendants"
|
|
android:dividerHeight="12dp"
|
|
android:orientation="vertical"
|
|
android:clipToPadding="false"
|
|
tools:listitem="@layout/list_item_device_entry"
|
|
tools:context=".MainActivity" />
|
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|