miniplaybackactivity should use match_parent.

wrap_content is just wrong and makes it look bad in horizontal view.
This commit is contained in:
Adrian Ulrich 2017-06-21 19:56:31 +02:00
parent 884c5ec491
commit 578ae2d75f

View File

@ -23,14 +23,14 @@ THE SOFTWARE.
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_height="wrap_content"
android:layout_width="wrap_content">
android:layout_height="match_parent"
android:layout_width="match_parent">
<ch.blinkenlights.android.vanilla.CoverView
android:id="@+id/cover_view"
android:layout_gravity="center"
android:layout_weight="1"
android:layout_height="0px"
android:layout_width="wrap_content" />
android:layout_width="match_parent" />
<LinearLayout
android:layout_gravity="center"
android:layout_height="wrap_content"