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

0001 <?xml version="1.0" encoding="utf-8"?>
0002 
0003 <!--
0004 SPDX-FileCopyrightText: 2017 Matthijs Tijink <matthijstijink@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.coordinatorlayout.widget.CoordinatorLayout
0010     xmlns:android="http://schemas.android.com/apk/res/android"
0011     xmlns:tools="http://schemas.android.com/tools"
0012     xmlns:app="http://schemas.android.com/apk/res-auto"
0013     android:layout_width="match_parent"
0014     android:layout_height="match_parent"
0015     tools:context="org.kde.kdeconnect.Plugins.MprisPlugin.MprisActivity">
0016 
0017     <com.google.android.material.appbar.AppBarLayout
0018         android:layout_width="match_parent"
0019         android:layout_height="wrap_content">
0020 
0021         <androidx.appcompat.widget.Toolbar
0022             android:id="@+id/toolbar"
0023             android:layout_width="match_parent"
0024             android:layout_height="?attr/actionBarSize" />
0025 
0026         <com.google.android.material.tabs.TabLayout
0027             android:id="@+id/mpris_tabs"
0028             android:layout_width="match_parent"
0029             android:layout_height="wrap_content" />
0030 
0031     </com.google.android.material.appbar.AppBarLayout>
0032 
0033     <androidx.viewpager2.widget.ViewPager2
0034         android:id="@+id/mpris_pager"
0035         android:layout_width="match_parent"
0036         android:layout_height="match_parent"
0037         app:layout_behavior="@string/appbar_scrolling_view_behavior" />
0038 
0039 </androidx.coordinatorlayout.widget.CoordinatorLayout>