summaryrefslogtreecommitdiff
path: root/android/res/layout/appwidget_4x1.xml
diff options
context:
space:
mode:
Diffstat (limited to 'android/res/layout/appwidget_4x1.xml')
-rw-r--r--android/res/layout/appwidget_4x1.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/android/res/layout/appwidget_4x1.xml b/android/res/layout/appwidget_4x1.xml
new file mode 100644
index 0000000000..0d2d6df010
--- /dev/null
+++ b/android/res/layout/appwidget_4x1.xml
@@ -0,0 +1,31 @@
1<?xml version="1.0" encoding="utf-8"?>
2
3<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
4 android:layout_width="fill_parent"
5 android:layout_height="fill_parent"
6 android:orientation="horizontal"
7 android:gravity="center"
8 android:background="@drawable/appwidget_background">
9 <!-- style="@style/appwidget_background"-->
10
11 <Button android:id="@+id/infoDisplay"
12 style="@style/appwidget_infodisplay"
13 android:layout_height="fill_parent"
14 android:text="@string/appwidget_infoDisplay" />
15 <ImageButton android:id="@+id/prev"
16 style="@style/appwidget_button"
17 android:layout_height="fill_parent"
18 android:src="@drawable/appwidget_prev" />
19 <ImageButton android:id="@+id/stop"
20 style="@style/appwidget_button"
21 android:layout_height="fill_parent"
22 android:src="@drawable/appwidget_stop" />
23 <ImageButton android:id="@+id/playPause"
24 style="@style/appwidget_button"
25 android:layout_height="fill_parent"
26 android:src="@drawable/appwidget_play" />
27 <ImageButton android:id="@+id/next"
28 style="@style/appwidget_button"
29 android:layout_height="fill_parent"
30 android:src="@drawable/appwidget_next" />
31</LinearLayout>