Skip to content

Commit

Permalink
Fix background of album in now playing screen when lyrics are displaying
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsvanvelzen committed Nov 15, 2024
1 parent 52d844e commit 003b414
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="?attr/defaultBackground" />
<corners android:radius="?attr/cardRounding" />
</shape>
7 changes: 7 additions & 0 deletions app/src/main/res/layout/fragment_audio_now_playing.xml
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,13 @@
</LinearLayout>
</RelativeLayout>

<FrameLayout
android:layout_width="250dp"
android:layout_height="250dp"
android:layout_alignParentEnd="true"
android:layout_marginEnd="60dp"
android:background="@drawable/audio_now_playing_album_background" />

<org.jellyfin.androidtv.ui.AsyncImageView
android:id="@+id/poster"
android:layout_width="250dp"
Expand Down

0 comments on commit 003b414

Please sign in to comment.