Warning, /network/kdeconnect-android/res/layout/activity_device.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 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
0010     xmlns:tools="http://schemas.android.com/tools"
0011     android:layout_width="match_parent"
0012     android:descendantFocusability="afterDescendants"
0013     android:focusable="false"
0014     android:layout_height="match_parent"
0015     tools:context="org.kde.kdeconnect.UserInterface.DeviceFragment">
0016 
0017     <!-- Shown when device is reachable but not yet paired -->
0018     <include
0019         android:id="@+id/pair_request"
0020         layout="@layout/view_pair_request"
0021         tools:visibility="gone"/>
0022 
0023     <!-- Shown when the device is paired but not reachable -->
0024     <include
0025         android:id="@+id/pair_error"
0026         layout="@layout/view_pair_error"
0027         tools:visibility="gone"/>
0028 
0029     <androidx.core.widget.NestedScrollView
0030         android:id="@+id/device_view"
0031         android:descendantFocusability="afterDescendants"
0032         android:layout_width="match_parent"
0033         android:layout_height="match_parent">
0034 
0035          <!-- Shown when the device is paired and reachable -->
0036         <androidx.compose.ui.platform.ComposeView
0037             android:id="@+id/device_view_compose"
0038             android:layout_width="match_parent"
0039             android:layout_height="wrap_content" />
0040 
0041     </androidx.core.widget.NestedScrollView>
0042 </FrameLayout>
0043 
0044