summaryrefslogtreecommitdiffstats
path: root/android/res/layout/appwidget_3x3.xml
blob: b5be5356fa9995ec50b1cf81b021314cdaa09592 (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
38
39
40
41
42
43
44
<?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="vertical"
              android:gravity="center"
              android:background="@drawable/appwidget_background">
              <!-- style="@style/appwidget_background"-->

  <ImageButton android:id="@+id/logo"
             android:layout_marginTop="15dp"
             android:layout_width="fill_parent"
             android:layout_height="130dp"
             android:scaleType="centerInside"
             android:background="@drawable/appwidget_infodisplay_background"
             android:src="@drawable/rockbox" />
  <Button android:id="@+id/infoDisplay"
          style="@style/appwidget_infodisplay"
          android:layout_width="fill_parent"
          android:text="@string/appwidget_infoDisplay" />
  <LinearLayout android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_weight="0"
                android:gravity="center"
                android:orientation="horizontal">
    <ImageButton android:id="@+id/prev"
                 style="@style/appwidget_button"
                 android:layout_weight="1"
                 android:src="@drawable/appwidget_prev" />
    <ImageButton android:id="@+id/stop"
                 style="@style/appwidget_button"
                 android:layout_weight="1"
                 android:src="@drawable/appwidget_stop" />
    <ImageButton android:id="@+id/playPause"
                 style="@style/appwidget_button"
                 android:layout_weight="1"
                 android:src="@drawable/appwidget_play" />
    <ImageButton android:id="@+id/next"
                 style="@style/appwidget_button"
                 android:layout_weight="1"
                 android:src="@drawable/appwidget_next" />
  </LinearLayout>
</LinearLayout>