Cover and Lyrics view now correctly reflect screen size

This commit is contained in:
antonio 2023-03-16 18:49:42 +01:00
parent b9e8faac38
commit 94cf24fff1
4 changed files with 36 additions and 32 deletions

View file

@ -2,8 +2,7 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingStart="24dp"
android:paddingEnd="24dp">
android:paddingHorizontal="24dp">
<ImageView
android:id="@+id/empty_description_image_view"
@ -33,8 +32,13 @@
app:layout_constraintTop_toBottomOf="@+id/empty_description_image_view" />
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintTop_toTopOf="parent">
<TextView
android:id="@+id/now_playing_song_lyrics_text_view"