vanilla/res/layout/mini_playback.xml
Christopher Eby 8b9e7a63b7 Rename the main activities to be more consitent
NowPlayingActivity -> FullPlaybackActivity
RemoteActivity -> MiniPlaybackActivity

Also renamed referenced layouts and move the MiniPlaybackActivity layout inside
the main activity file
2010-03-21 16:43:52 -05:00

34 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<org.kreed.vanilla.MiniPlaybackActivityLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="wrap_content">
<org.kreed.vanilla.CoverView
android:id="@+id/cover_view"
android:layout_height="wrap_content"
android:layout_width="wrap_content" />
<LinearLayout
android:orientation="horizontal"
android:layout_height="wrap_content"
android:layout_width="wrap_content">
<include layout="@layout/playback_buttons" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_height="wrap_content"
android:layout_width="wrap_content">
<org.kreed.vanilla.ControlButton
android:id="@+id/open_button"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginLeft="15px"
android:src="@drawable/fullscreen" />
<org.kreed.vanilla.ControlButton
android:id="@+id/kill_button"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginLeft="25px"
android:layout_marginRight="15px"
android:src="@drawable/kill" />
</LinearLayout>
</org.kreed.vanilla.MiniPlaybackActivityLayout>