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

0001 <?xml version="1.0" encoding="utf-8"?>
0002 
0003 <!--
0004 SPDX-FileCopyrightText: 2021 Philip Cohn-Cort <cliabhach@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.swiperefreshlayout.widget.SwipeRefreshLayout
0010     xmlns:app="http://schemas.android.com/apk/res-auto"
0011     xmlns:android="http://schemas.android.com/apk/res/android"
0012     xmlns:tools="http://schemas.android.com/tools"
0013     android:id="@+id/error_message_container"
0014     android:layout_width="match_parent"
0015     android:layout_height="match_parent"
0016     android:visibility="gone"
0017     tools:visibility="visible">
0018 
0019     <LinearLayout
0020         android:layout_width="match_parent"
0021         android:layout_height="match_parent"
0022         android:padding="16dp"
0023         android:gravity="center"
0024         android:orientation="horizontal">
0025 
0026         <androidx.appcompat.widget.AppCompatImageView
0027             android:id="@+id/error_message_icon"
0028             android:layout_width="wrap_content"
0029             android:layout_height="wrap_content"
0030             android:importantForAccessibility="no"
0031             android:paddingEnd="8dip"
0032             android:paddingStart="0dip"
0033             android:src="@drawable/ic_error_outline_48dp"
0034             app:tint="?attr/colorHighContrast"
0035             tools:ignore="UnusedAttribute" />
0036 
0037         <TextView
0038             android:id="@+id/not_reachable_message"
0039             android:layout_width="match_parent"
0040             android:layout_height="wrap_content"
0041             android:gravity="center_vertical"
0042             android:text="@string/unreachable_description"
0043             android:textAppearance="?android:attr/textAppearanceMedium"
0044             tools:visibility="visible" />
0045 
0046     </LinearLayout>
0047 
0048 </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>