2020-11-20 15:38:08 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-04-16 10:08:31 +02:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:layout_width="wrap_content"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:paddingEnd="8dp">
|
|
|
|
|
|
2021-04-16 10:08:31 +02:00
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/track_cover_image_view"
|
|
|
|
|
android:layout_width="172dp"
|
|
|
|
|
android:layout_height="172dp"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:layout_gravity="center"
|
2021-04-16 10:08:31 +02:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"/>
|
2020-11-20 15:38:08 +01:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/title_track_label"
|
2021-04-16 10:08:31 +02:00
|
|
|
android:layout_width="0dp"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:layout_height="wrap_content"
|
2020-11-26 16:05:58 +01:00
|
|
|
android:ellipsize="end"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:fontFamily="@font/open_sans_font_family"
|
2020-11-26 16:05:58 +01:00
|
|
|
android:maxLines="2"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:paddingTop="8dp"
|
2020-11-21 18:41:35 +01:00
|
|
|
android:singleLine="false"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:textColor="@color/titleTextColor"
|
|
|
|
|
android:textSize="14sp"
|
2021-04-16 10:08:31 +02:00
|
|
|
android:textStyle="bold"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/track_cover_image_view"/>
|
2020-11-20 15:38:08 +01:00
|
|
|
|
|
|
|
|
<TextView
|
2020-11-25 15:12:07 +01:00
|
|
|
android:id="@+id/album_track_label"
|
2021-04-16 10:08:31 +02:00
|
|
|
android:layout_width="0dp"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:layout_height="wrap_content"
|
2020-11-26 16:05:58 +01:00
|
|
|
android:ellipsize="end"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:fontFamily="@font/open_sans_font_family"
|
2020-11-26 16:05:58 +01:00
|
|
|
android:maxLines="1"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:textColor="@color/titleTextColor"
|
2021-04-16 10:08:31 +02:00
|
|
|
android:textSize="12sp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/title_track_label"/>
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|