NowPlayingActivity -> FullPlaybackActivity RemoteActivity -> MiniPlaybackActivity Also renamed referenced layouts and move the MiniPlaybackActivity layout inside the main activity file
34 lines
1.2 KiB
XML
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> |