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

0001 <?xml version="1.0" encoding="utf-8"?>
0002 
0003 <!--
0004 SPDX-FileCopyrightText: 2018 Nicolas Fella <nicolas.fella@gmx.de
0005 
0006 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 -->
0008 
0009 <com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
0010     xmlns:app="http://schemas.android.com/apk/res-auto"
0011     xmlns:tools="http://schemas.android.com/tools"
0012     android:id="@+id/sink_card"
0013     android:layout_width="match_parent"
0014     android:layout_height="wrap_content"
0015     app:cardCornerRadius="8dp"
0016     app:cardElevation="0dp"
0017     app:contentPadding="8dp"
0018     app:strokeColor="@color/card_stroke_color"
0019     app:strokeWidth="1dp">
0020 
0021     <LinearLayout
0022         android:layout_width="match_parent"
0023         android:layout_height="wrap_content"
0024         android:gravity="center"
0025         android:orientation="vertical">
0026 
0027         <RadioButton
0028             android:id="@+id/systemvolume_label"
0029             android:layout_width="match_parent"
0030             android:layout_height="wrap_content"
0031             android:layout_gravity="start"
0032             android:ellipsize="end"
0033             android:maxLines="1"
0034             android:paddingStart="14dp"
0035             android:textAppearance="@style/TextAppearance.AppCompat.Medium"
0036             tools:text="Device name" />
0037 
0038         <LinearLayout
0039             android:id="@+id/systemvolume_layout"
0040             android:layout_width="match_parent"
0041             android:layout_height="wrap_content"
0042             android:layout_gravity="center"
0043             android:layout_marginTop="8dip"
0044             android:orientation="horizontal">
0045 
0046             <ImageButton
0047                 android:id="@+id/systemvolume_mute"
0048                 android:layout_width="30dp"
0049                 android:layout_height="30dp"
0050                 android:background="@android:color/transparent"
0051                 android:contentDescription="@string/mute"
0052                 android:scaleType="fitXY"
0053                 android:src="@drawable/ic_volume_black"
0054                 app:tint="?attr/colorHighContrast" />
0055 
0056             <SeekBar
0057                 android:id="@+id/systemvolume_seek"
0058                 android:layout_width="match_parent"
0059                 android:layout_height="wrap_content"
0060                 android:layout_gravity="center"
0061                 android:max="100" />
0062 
0063         </LinearLayout>
0064     </LinearLayout>
0065 </com.google.android.material.card.MaterialCardView>