2022-04-12 23:55:08 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2022-06-27 22:47:52 +05:30
|
|
|
android:id="@+id/playlist"
|
2022-04-12 23:55:08 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
2022-06-27 22:47:52 +05:30
|
|
|
android:background="?android:attr/selectableItemBackground">
|
2022-04-12 23:55:08 +05:30
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.Guideline
|
|
|
|
android:id="@+id/guideline"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2022-06-03 22:19:48 +05:30
|
|
|
app:layout_constraintGuide_percent=".45" />
|
|
|
|
|
2022-04-12 23:55:08 +05:30
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
android:id="@+id/card_playlist_thumbnail"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2022-06-27 22:47:52 +05:30
|
|
|
app:cardCornerRadius="8dp"
|
2022-04-12 23:55:08 +05:30
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintDimensionRatio="16:9"
|
2022-06-27 22:47:52 +05:30
|
|
|
app:layout_constraintEnd_toStartOf="@+id/guideline"
|
2022-04-12 23:55:08 +05:30
|
|
|
app:layout_constraintHorizontal_bias="0.0"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"
|
2022-06-27 22:47:52 +05:30
|
|
|
app:strokeWidth="0dp">
|
2022-04-12 23:55:08 +05:30
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/playlist_thumbnail"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:srcCompat="@tools:sample/backgrounds/scenic" />
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/playlist_title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
2022-04-15 16:56:06 +05:30
|
|
|
android:text=""
|
2022-04-15 00:21:54 +05:30
|
|
|
app:layout_constraintEnd_toStartOf="@+id/delete_playlist"
|
2022-04-12 23:55:08 +05:30
|
|
|
app:layout_constraintStart_toEndOf="@+id/card_playlist_thumbnail"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/playlist_description"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
2022-04-15 16:56:06 +05:30
|
|
|
android:text=""
|
2022-04-12 23:55:08 +05:30
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/card_playlist_thumbnail"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/playlist_title" />
|
2022-06-03 22:19:48 +05:30
|
|
|
|
2022-04-15 16:56:06 +05:30
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
2022-04-15 00:21:54 +05:30
|
|
|
android:id="@+id/delete_playlist"
|
2022-04-15 16:56:06 +05:30
|
|
|
android:layout_width="0dp"
|
2022-04-15 00:21:54 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-06-27 22:47:52 +05:30
|
|
|
android:background="?android:attr/selectableItemBackground"
|
|
|
|
android:padding="8dp"
|
2022-04-15 00:21:54 +05:30
|
|
|
android:src="@drawable/ic_delete"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2022-06-27 22:47:52 +05:30
|
|
|
app:shapeAppearanceOverlay="@style/roundedImageViewRounded" />
|
2022-04-12 23:55:08 +05:30
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|