Warning, /network/kdeconnect-android/res/layout/mpris_now_playing.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 Art Pinch <leonardo906@mail.ru>
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="match_parent"
0011     android:layout_height="match_parent"
0012     android:orientation="@integer/mpris_now_playing_orientation"
0013     android:paddingHorizontal="@dimen/activity_horizontal_margin"
0014     android:paddingVertical="@dimen/activity_vertical_margin">
0015 
0016     <ImageView
0017         android:id="@+id/album_art"
0018         android:layout_width="@dimen/mpris_now_playing_album_width"
0019         android:layout_height="@dimen/mpris_now_playing_album_height"
0020         android:layout_margin="25dp"
0021         android:layout_weight="@integer/mpris_now_playing_album_weight"
0022         android:contentDescription="@string/mpris_coverart_description"
0023         android:scaleType="fitCenter" />
0024 
0025     <include
0026         android:id="@+id/mpris_control"
0027         layout="@layout/mpris_control"
0028         android:layout_width="@dimen/mpris_now_playing_controls_width"
0029         android:layout_height="@dimen/mpris_now_playing_controls_height"
0030         android:layout_weight="@integer/mpris_now_playing_controls_weight" />
0031 
0032 </LinearLayout>