2020-11-20 15:38:08 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-11-22 19:11:38 +01:00
|
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-11-20 15:38:08 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:layout_width="match_parent"
|
2020-11-25 15:12:07 +01:00
|
|
|
android:layout_height="match_parent"
|
2020-11-26 16:05:58 +01:00
|
|
|
android:layout_marginStart="16dp"
|
2020-11-25 15:12:07 +01:00
|
|
|
android:layout_marginTop="8dp"
|
2020-11-26 16:05:58 +01:00
|
|
|
android:layout_marginEnd="16dp"
|
2020-11-25 15:12:07 +01:00
|
|
|
android:layout_marginBottom="16dp"
|
2020-11-26 16:05:58 +01:00
|
|
|
android:backgroundTint="@color/cardColor"
|
|
|
|
|
app:cardCornerRadius="4dp">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/discover_song_cover_image_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="172dp" />
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="172dp"
|
2020-11-27 09:06:50 +01:00
|
|
|
android:background="@drawable/gradient_discover_background_image" />
|
2020-11-20 15:38:08 +01:00
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:layout_width="match_parent"
|
2020-11-21 18:41:35 +01:00
|
|
|
android:layout_height="172dp">
|
2020-11-20 15:38:08 +01:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/title_discover_song_label"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
|
android:layout_marginTop="18dp"
|
2020-11-22 19:11:38 +01:00
|
|
|
android:layout_marginRight="16dp"
|
2020-11-26 16:05:58 +01:00
|
|
|
android:ellipsize="end"
|
|
|
|
|
android:maxLines="2"
|
|
|
|
|
android:textColor="@color/gradientTitleColor"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:textSize="20sp" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
2020-11-24 10:52:00 +01:00
|
|
|
android:id="@+id/album_discover_song_label"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_below="@id/title_discover_song_label"
|
|
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
|
android:drawablePadding="10dp"
|
|
|
|
|
android:ellipsize="end"
|
2020-11-26 16:05:58 +01:00
|
|
|
android:maxLines="1"
|
|
|
|
|
android:textColor="@color/gradientSubtitleColor"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:textSize="14sp" />
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
</androidx.cardview.widget.CardView>
|