Skip to content
Snippets Groups Projects
Commit e7c962a9 authored by Nicolas Pomepuy's avatar Nicolas Pomepuy
Browse files

Albums: fix blurred image sizing

parent 4e80138f
Branches iOS-2.7
No related tags found
1 merge request!1411Albums ui fixes
Pipeline #232056 passed with stage
in 21 minutes and 46 seconds
......@@ -56,13 +56,6 @@
vlc:title="@{playlist.title}"
vlc:titleEnabled="false">
<ImageView
android:id="@+id/backgroundView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="?attr/background_default_darker" />
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/header_layout"
android:layout_width="@dimen/default_content_width"
......@@ -72,6 +65,16 @@
android:fitsSystemWindows="true"
vlc:layout_collapseMode="parallax">
<ImageView
android:id="@+id/backgroundView"
android:layout_width="0dp"
android:layout_height="0dp"
android:scaleType="centerCrop"
vlc:layout_constraintTop_toTopOf="parent"
vlc:layout_constraintBottom_toBottomOf="parent"
vlc:layout_constraintStart_toStartOf="parent"
vlc:layout_constraintEnd_toEndOf="parent"
android:src="?attr/background_default_darker" />
<ImageView
android:id="@+id/playlist_cover"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment