Warning, /network/kdeconnect-android/res/layout/activity_main.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 <androidx.drawerlayout.widget.DrawerLayout
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="match_parent">
0015 
0016     <androidx.coordinatorlayout.widget.CoordinatorLayout
0017         android:id="@+id/coordinatorLayout"
0018         android:layout_height="match_parent"
0019         android:layout_width="match_parent"
0020         tools:context="org.kde.kdeconnect.UserInterface.MainActivity"
0021         android:fitsSystemWindows="true">
0022 
0023         <include layout="@layout/toolbar" android:id="@+id/toolbar_layout"/>
0024 
0025         <FrameLayout
0026             android:id="@+id/container"
0027             android:descendantFocusability="afterDescendants"
0028             android:focusable="false"
0029             android:layout_width="match_parent"
0030             android:layout_height="match_parent"
0031             app:layout_behavior="@string/appbar_scrolling_view_behavior"
0032             />
0033 
0034     </androidx.coordinatorlayout.widget.CoordinatorLayout>
0035 
0036     <com.google.android.material.navigation.NavigationView
0037         android:id="@+id/navigation_drawer"
0038         android:layout_width="wrap_content"
0039         android:layout_height="match_parent"
0040         android:layout_gravity="start"
0041         app:headerLayout="@layout/nav_header"/>
0042 
0043 </androidx.drawerlayout.widget.DrawerLayout>