summaryrefslogtreecommitdiff
path: root/android/res/layout/appwidget_4x1.xml
blob: db7ebb5d0d770245a3f8ed681d0bab252d14bd7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?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"-->

  <ImageButton android:id="@+id/logo"
             android:layout_width="68dp"
             android:layout_height="fill_parent"
             android:scaleType="centerInside"
             android:background="@drawable/appwidget_infodisplay_background"
             android:src="@drawable/rockbox" />
  <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>