Refactoring - Removed most of the click listeners from the adapters and moved them into the appropriate fragments

This commit is contained in:
antonio 2023-01-04 09:14:15 +01:00
parent 29f56945c2
commit 754fc69eab
54 changed files with 1143 additions and 1137 deletions

View file

@ -1,56 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/playlist_card_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="16dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="16dp"
app:cardCornerRadius="4dp">
<ImageView
android:id="@+id/playlist_cover_image_view"
android:layout_width="match_parent"
android:layout_height="196dp" />
<View
android:layout_width="match_parent"
android:layout_height="196dp"
android:background="@drawable/gradient_discover_background_image" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="196dp">
<TextView
android:id="@+id/playlist_name_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:layout_marginTop="18dp"
android:layout_marginRight="16dp"
android:ellipsize="end"
android:fontFamily="@font/inter"
android:maxLines="2"
android:textColor="@color/gradientTitleColor"
android:textFontWeight="400"
android:textSize="20sp" />
<TextView
android:id="@+id/playlist_song_counter_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/playlist_name_text"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:drawablePadding="10dp"
android:ellipsize="end"
android:fontFamily="@font/inter"
android:maxLines="1"
android:textColor="@color/gradientSubtitleColor"
android:textFontWeight="400"
android:textSize="14sp" />
</RelativeLayout>
</androidx.cardview.widget.CardView>

View file

@ -5,11 +5,22 @@
android:clipChildren="false"
android:foreground="?attr/selectableItemBackground"
android:orientation="horizontal"
android:paddingStart="24dp"
android:paddingTop="3dp"
android:paddingEnd="24dp"
android:paddingBottom="3dp">
<ImageView
android:id="@+id/queue_song_play_image_view"
android:layout_width="16dp"
android:layout_height="16dp"
android:layout_gravity="center"
android:layout_margin="4dp"
android:src="@drawable/ic_play"
android:visibility="invisible"
app:layout_constraintBottom_toBottomOf="@+id/queue_song_cover_image_view"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/queue_song_cover_image_view" />
<ImageView
android:id="@+id/queue_song_cover_image_view"
android:layout_width="52dp"
@ -17,7 +28,7 @@
android:layout_gravity="center"
android:layout_margin="2dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintStart_toEndOf="@+id/queue_song_play_image_view"
app:layout_constraintTop_toTopOf="parent" />
<TextView