summaryrefslogtreecommitdiffstats
path: root/android/res/layout/appwidget_4x1.xml
diff options
context:
space:
mode:
authorAntoine Cellerier <dionoea@videolan.org>2011-01-29 20:47:32 +0000
committerAntoine Cellerier <dionoea@videolan.org>2011-01-29 20:47:32 +0000
commitc0c769c5a86c56c2ab2c9e88515a64da98575182 (patch)
tree24e84b2d146bf3da39d93983d5656061e3c88ecb /android/res/layout/appwidget_4x1.xml
parente9749d1b93f23b3bc36305ad1d39ca5e5c0cb3a8 (diff)
downloadrockbox-c0c769c5a86c56c2ab2c9e88515a64da98575182.tar.gz
rockbox-c0c769c5a86c56c2ab2c9e88515a64da98575182.zip
Add widgets to android port.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29170 a1c6a512-1295-4272-9138-f99709370657
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 @@
+<?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="fill_parent"
+ android:orientation="horizontal"
+ android:gravity="center"
+ android:background="@drawable/appwidget_background">
+ <!-- style="@style/appwidget_background"-->
+
+ <Button android:id="@+id/infoDisplay"
+ style="@style/appwidget_infodisplay"
+ android:layout_height="fill_parent"
+ android:text="@string/appwidget_infoDisplay" />
+ <ImageButton android:id="@+id/prev"
+ style="@style/appwidget_button"
+ android:layout_height="fill_parent"
+ android:src="@drawable/appwidget_prev" />
+ <ImageButton android:id="@+id/stop"
+ style="@style/appwidget_button"
+ android:layout_height="fill_parent"
+ android:src="@drawable/appwidget_stop" />
+ <ImageButton android:id="@+id/playPause"
+ style="@style/appwidget_button"
+ android:layout_height="fill_parent"
+ android:src="@drawable/appwidget_play" />
+ <ImageButton android:id="@+id/next"
+ style="@style/appwidget_button"
+ android:layout_height="fill_parent"
+ android:src="@drawable/appwidget_next" />
+</LinearLayout>