rockbox/android/res/layout/appwidget_configure.xml
Thomas Martitz 883ff8507e Android: Show cover art in the widget (including option to hide it).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29437 a1c6a512-1295-4272-9138-f99709370657
2011-02-27 20:47:44 +00:00

44 lines
1.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView android:id="@+id/logo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scaleType="centerInside"
android:src="@drawable/rockbox" />
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/appwidget_configure_instructions"/>
<CheckBox android:id="@+id/enable_aa"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/appwidget_configure_albumart"/>
<CheckBox android:id="@+id/enable_prev"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/appwidget_configure_prev"/>
<CheckBox android:id="@+id/enable_stop"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/appwidget_configure_stop"/>
<CheckBox android:id="@+id/enable_playpause"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/appwidget_configure_playpause"/>
<CheckBox android:id="@+id/enable_next"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/appwidget_configure_next"/>
<Button android:id="@+id/confirm"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/appwidget_configure_confirm"/>
</LinearLayout>