2020-11-20 15:38:08 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-03-16 19:47:39 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:layout_width="match_parent"
|
2020-11-25 15:12:07 +01:00
|
|
|
android:layout_height="match_parent"
|
2023-03-16 19:47:39 +01:00
|
|
|
android:paddingHorizontal="16dp">
|
2020-11-26 16:05:58 +01:00
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/discover_song_cover_image_view"
|
|
|
|
|
android:layout_width="match_parent"
|
2020-12-05 21:31:12 +01:00
|
|
|
android:layout_height="196dp"
|
2023-09-07 19:48:03 -06:00
|
|
|
android:background="?attr/colorSurfaceContainerHighest"
|
2023-03-16 19:47:39 +01:00
|
|
|
android:foreground="@drawable/gradient_discover_background_image" />
|
2020-11-20 15:38:08 +01:00
|
|
|
|
2023-03-16 19:47:39 +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"
|
|
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
|
android:ellipsize="end"
|
|
|
|
|
android:fontFamily="@font/inter"
|
|
|
|
|
android:maxLines="2"
|
|
|
|
|
android:textColor="@color/gradientTitleColor"
|
|
|
|
|
android:textFontWeight="400"
|
|
|
|
|
android:textSize="20sp" />
|
2020-11-20 15:38:08 +01:00
|
|
|
|
2023-03-16 19:47:39 +01:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/album_discover_song_label"
|
|
|
|
|
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"
|
|
|
|
|
android:fontFamily="@font/inter"
|
|
|
|
|
android:maxLines="1"
|
|
|
|
|
android:textColor="@color/gradientSubtitleColor"
|
|
|
|
|
android:textFontWeight="400"
|
|
|
|
|
android:textSize="14sp" />
|
|
|
|
|
</RelativeLayout>
|