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

0001 <?xml version="1.0" encoding="utf-8"?>
0002 
0003 <!--
0004 SPDX-FileCopyrightText: 2019 Erik Duisters <e.duisters1@gmail.com>
0005 
0006 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 -->
0008 
0009 <androidx.coordinatorlayout.widget.CoordinatorLayout
0010     xmlns:android="http://schemas.android.com/apk/res/android"
0011     xmlns:app="http://schemas.android.com/apk/res-auto"
0012     android:layout_width="match_parent"
0013     android:layout_height="match_parent"
0014     xmlns:tools="http://schemas.android.com/tools"
0015     tools:context="org.kde.kdeconnect.UserInterface.CustomDevicesActivity"
0016     android:fitsSystemWindows="true">
0017 
0018     <include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
0019 
0020     <androidx.coordinatorlayout.widget.CoordinatorLayout
0021         android:layout_width="match_parent"
0022         android:layout_height="match_parent"
0023         app:layout_behavior="@string/appbar_scrolling_view_behavior">
0024 
0025         <androidx.recyclerview.widget.RecyclerView
0026             android:id="@+id/recyclerView"
0027             android:layout_width="match_parent"
0028             android:layout_height="match_parent"
0029             tools:listitem="@layout/custom_device_item"/>
0030 
0031         <TextView
0032             android:id="@+id/emptyListMessage"
0033             style="@style/TextAppearance.AppCompat.Medium"
0034             android:layout_width="match_parent"
0035             android:layout_height="wrap_content"
0036             android:layout_gravity="center_vertical"
0037             android:layout_marginLeft="@dimen/activity_horizontal_margin"
0038             android:layout_marginRight="@dimen/activity_horizontal_margin"
0039             android:gravity="center_horizontal"
0040             android:text="@string/custom_device_list_help"
0041             />
0042 
0043         <com.google.android.material.floatingactionbutton.FloatingActionButton
0044             android:id="@+id/floatingActionButton"
0045             style="@style/KdeConnectThemeBase"
0046             android:layout_width="wrap_content"
0047             android:layout_height="wrap_content"
0048             android:layout_gravity="bottom|end"
0049             android:layout_margin="@dimen/fab_margin"
0050             app:elevation="@dimen/fab_elevation"
0051             android:contentDescription="@string/add_device_dialog_title"
0052             android:src="@drawable/ic_add"/>
0053     </androidx.coordinatorlayout.widget.CoordinatorLayout>
0054 </androidx.coordinatorlayout.widget.CoordinatorLayout>