A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd
at master 48 lines 2.0 kB view raw
1<?xml version="1.0" encoding="utf-8"?> 2 3<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 4 android:layout_width="fill_parent" 5 android:layout_height="fill_parent" 6 android:fillViewport="true"> 7<LinearLayout android:layout_width="fill_parent" 8 android:layout_height="wrap_content" 9 android:orientation="vertical"> 10 11 <ImageView android:id="@+id/logo" 12 android:layout_width="fill_parent" 13 android:layout_height="wrap_content" 14 android:scaleType="centerInside" 15 android:src="@drawable/rockbox" /> 16 17 <TextView android:layout_width="fill_parent" 18 android:layout_height="wrap_content" 19 android:text="@string/appwidget_configure_instructions"/> 20 21 <CheckBox android:id="@+id/enable_aa" 22 android:layout_width="fill_parent" 23 android:layout_height="wrap_content" 24 android:text="@string/appwidget_configure_albumart"/> 25 <CheckBox android:id="@+id/enable_prev" 26 android:layout_width="fill_parent" 27 android:layout_height="wrap_content" 28 android:text="@string/appwidget_configure_prev"/> 29 <CheckBox android:id="@+id/enable_stop" 30 android:layout_width="fill_parent" 31 android:layout_height="wrap_content" 32 android:text="@string/appwidget_configure_stop"/> 33 <CheckBox android:id="@+id/enable_playpause" 34 android:layout_width="fill_parent" 35 android:layout_height="wrap_content" 36 android:text="@string/appwidget_configure_playpause"/> 37 <CheckBox android:id="@+id/enable_next" 38 android:layout_width="fill_parent" 39 android:layout_height="wrap_content" 40 android:text="@string/appwidget_configure_next"/> 41 42 <Button android:id="@+id/confirm" 43 android:layout_width="fill_parent" 44 android:layout_height="wrap_content" 45 android:text="@string/appwidget_configure_confirm"/> 46</LinearLayout> 47</ScrollView> 48