summaryrefslogtreecommitdiffstats
path: root/res/layout/album_appwidget3x1.xml
blob: f9ffde0f18bb97fa097620ff76a8a8b5bd0e794a (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/appwidget_bg"
    android:orientation="horizontal" >

    <ImageView
        android:id="@+id/albumart"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="1.5"
        android:adjustViewBounds="true"
        android:scaleType="fitXY"
        android:src="@drawable/appwidget_play_normal" />

    <ImageView
        android:id="@+id/previous"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="1.0"
        android:background="@drawable/btn_bg"
        android:scaleType="center"
        android:src="@drawable/ic_appwidget_music_prev" />

    <ImageView
        android:id="@+id/next"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="1.0"
        android:background="@drawable/btn_bg"
        android:scaleType="center"
        android:src="@drawable/ic_appwidget_music_next" />

</LinearLayout>