Warning, /network/kdeconnect-android/res/layout/devices_list.xml is written in an unsupported language. File is not indexed.

0001 <?xml version="1.0" encoding="utf-8"?>
0002 
0003 <!--
0004 SPDX-FileCopyrightText: 2017 Zixing Liu <liushuyu@protonmail.com>
0005 
0006 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 -->
0008 
0009 <androidx.swiperefreshlayout.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
0010     xmlns:tools="http://schemas.android.com/tools"
0011     android:id="@+id/refresh_list_layout"
0012     android:layout_width="match_parent"
0013     android:layout_height="match_parent"
0014     android:layout_margin="@dimen/activity_horizontal_margin">
0015 
0016     <ListView
0017         android:id="@+id/devices_list"
0018         android:layout_width="match_parent"
0019         android:layout_height="match_parent"
0020         android:addStatesFromChildren="true"
0021         android:divider="@null"
0022         android:descendantFocusability="afterDescendants"
0023         android:dividerHeight="12dp"
0024         android:orientation="vertical"
0025         tools:listitem="@layout/list_card_entry"
0026         tools:context=".MainActivity" />
0027 
0028 </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>