feat: Mark currently playing song in PlayerSongQueueAdapter

This commit is contained in:
Jaime García 2025-09-22 00:35:23 +02:00
parent 52ba783a90
commit d810010090
No known key found for this signature in database
GPG key ID: BC4E5F71A71BDA5B
3 changed files with 38 additions and 0 deletions

View file

@ -20,6 +20,28 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<View
android:id="@+id/cover_art_overlay"
android:layout_width="52dp"
android:layout_height="52dp"
android:layout_marginStart="2dp"
android:background="#80000000"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/play_pause_icon"
android:layout_width="28dp"
android:layout_height="28dp"
android:layout_marginStart="14dp"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:src="@drawable/button_play_pause_selector" />
<TextView
android:id="@+id/queue_song_title_text_view"
style="@style/LabelMedium"