vanilla/res/layout/one_cell_widget.xml
Christopher Eby dc0639784e Add a 1x1 cell widget
Larger sizes are to come
2010-02-26 23:21:46 -06:00

27 lines
875 B
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="fill_parent">
<ImageView
android:id="@+id/cover_view"
android:layout_height="fill_parent"
android:layout_width="fill_parent" />
<LinearLayout
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:orientation="vertical" >
<ImageButton
android:id="@+id/play_pause"
android:background="@drawable/hidden_play_pause"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_weight="1" />
<ImageButton
android:id="@+id/next"
android:background="@drawable/hidden_next"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_weight="1" />
</LinearLayout>
</RelativeLayout>