Android: Show cover art in the widget (including option to hide it).
[maemo-rb.git] / android / res / layout / appwidget_configure.xml
blob1f33afe61e49e17523c7bba9037bb355509a9aa1
1 <?xml version="1.0" encoding="utf-8"?>
3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
4               android:layout_width="fill_parent"
5               android:layout_height="wrap_content"
6               android:orientation="vertical">
8   <ImageView android:id="@+id/logo"
9              android:layout_width="fill_parent"
10              android:layout_height="wrap_content"
11              android:scaleType="centerInside"
12              android:src="@drawable/rockbox" />
14   <TextView android:layout_width="fill_parent"
15             android:layout_height="wrap_content"
16             android:text="@string/appwidget_configure_instructions"/>
18   <CheckBox android:id="@+id/enable_aa"
19             android:layout_width="fill_parent"
20             android:layout_height="wrap_content"
21             android:text="@string/appwidget_configure_albumart"/>
22   <CheckBox android:id="@+id/enable_prev"
23             android:layout_width="fill_parent"
24             android:layout_height="wrap_content"
25             android:text="@string/appwidget_configure_prev"/>
26   <CheckBox android:id="@+id/enable_stop"
27             android:layout_width="fill_parent"
28             android:layout_height="wrap_content"
29             android:text="@string/appwidget_configure_stop"/>
30   <CheckBox android:id="@+id/enable_playpause"
31             android:layout_width="fill_parent"
32             android:layout_height="wrap_content"
33             android:text="@string/appwidget_configure_playpause"/>
34   <CheckBox android:id="@+id/enable_next"
35             android:layout_width="fill_parent"
36             android:layout_height="wrap_content"
37             android:text="@string/appwidget_configure_next"/>
39   <Button android:id="@+id/confirm"
40           android:layout_width="fill_parent"
41           android:layout_height="wrap_content"
42           android:text="@string/appwidget_configure_confirm"/>
43 </LinearLayout>