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

0001 <?xml version="1.0" encoding="utf-8"?>
0002 
0003 <!--
0004 SPDX-FileCopyrightText: 2023 Albert Vaca Cintora <albertvaka@gmail.com>
0005 
0006 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 -->
0008 
0009 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
0010     android:layout_width="fill_parent"
0011     android:layout_height="wrap_content"
0012     xmlns:tools="http://schemas.android.com/tools"
0013     android:orientation="vertical">
0014 
0015     <TextView
0016         android:id="@+id/list_item_category_text"
0017         android:layout_width="match_parent"
0018         android:layout_height="wrap_content"
0019         android:layout_marginTop="8dp"
0020         android:drawablePadding="4dp"
0021         android:paddingLeft="16dip"
0022         android:paddingRight="16dip"
0023         android:textSize="16sp"
0024         tools:text="Header" />
0025 
0026     <TextView
0027         android:id="@+id/list_item_category_empty_placeholder"
0028         android:layout_width="wrap_content"
0029         android:layout_height="wrap_content"
0030         android:layout_gravity="center"
0031         android:layout_margin="10dip"
0032         android:text="@string/device_list_empty"
0033         android:textAppearance="?android:attr/textAppearanceSmall"
0034         android:visibility="gone" />
0035 
0036 </LinearLayout>