Warning, /network/kdeconnect-android/res/layout/custom_device_item.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 <FrameLayout
0010     xmlns:android="http://schemas.android.com/apk/res/android"
0011     xmlns:app="http://schemas.android.com/apk/res-auto"
0012     xmlns:tools="http://schemas.android.com/tools"
0013     android:layout_width="match_parent"
0014     android:layout_height="wrap_content"
0015     android:background="?attr/colorButtonNormal">
0016 
0017 
0018     <TextView
0019         android:id="@+id/deviceNameOrIPBackdrop"
0020         android:layout_width="match_parent"
0021         android:layout_height="match_parent"
0022         android:paddingEnd="?android:attr/listPreferredItemPaddingRight"
0023         android:paddingStart="?android:attr/listPreferredItemPaddingLeft"
0024         app:drawableEndCompat="@drawable/ic_delete"
0025         app:drawableStartCompat="@drawable/ic_delete" />
0026 
0027     <FrameLayout
0028         android:id="@+id/swipeableView"
0029         android:layout_width="match_parent"
0030         android:layout_height="match_parent"
0031         android:background="?android:colorBackground">
0032 
0033         <TextView
0034             android:id="@+id/deviceNameOrIP"
0035             android:layout_width="match_parent"
0036             android:layout_height="wrap_content"
0037             android:background="?android:selectableItemBackground"
0038             android:gravity="center_vertical"
0039             android:minHeight="?android:attr/listPreferredItemHeightSmall"
0040             android:paddingEnd="?android:attr/listPreferredItemPaddingRight"
0041             android:paddingStart="?android:attr/listPreferredItemPaddingLeft"
0042             android:textAppearance="?android:attr/textAppearanceListItemSmall"
0043             android:visibility="visible"
0044             tools:text="192.168.0.1"/>
0045 
0046     </FrameLayout>
0047 
0048 </FrameLayout>