2021-12-11 19:27:16 +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"
|
|
|
|
android:layout_width="match_parent"
|
2022-02-06 14:58:43 +05:30
|
|
|
android:background="?android:attr/selectableItemBackground"
|
|
|
|
|
2021-12-11 19:27:16 +05:30
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2022-02-02 18:08:57 +05:30
|
|
|
<androidx.cardview.widget.CardView
|
|
|
|
android:id="@+id/thumbnailcard"
|
2021-12-11 19:27:16 +05:30
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
app:layout_constraintDimensionRatio="16:9"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2022-02-02 18:08:57 +05:30
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:cardCornerRadius="8dp"
|
|
|
|
android:elevation="10dp">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/thumbnail"
|
|
|
|
android:src="@mipmap/ic_launcher"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
/>
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
|
2021-12-11 19:27:16 +05:30
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textView_title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:text="Title"
|
|
|
|
android:textSize="15sp"
|
|
|
|
android:textStyle="bold"
|
2022-02-02 18:08:57 +05:30
|
|
|
app:layout_constraintEnd_toEndOf="@+id/thumbnailcard"
|
2021-12-11 19:27:16 +05:30
|
|
|
app:layout_constraintStart_toEndOf="@+id/channel_image"
|
2022-02-02 18:08:57 +05:30
|
|
|
app:layout_constraintTop_toBottomOf="@+id/thumbnailcard" />
|
2021-12-11 19:27:16 +05:30
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textView_channel"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Channel Name"
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/textView_title"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/textView_title"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/textView_title"
|
|
|
|
android:paddingBottom="16dp"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<de.hdodenhof.circleimageview.CircleImageView
|
|
|
|
android:id="@+id/channel_image"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2022-02-02 18:08:57 +05:30
|
|
|
app:layout_constraintTop_toBottomOf="@+id/thumbnailcard"
|
2021-12-11 19:27:16 +05:30
|
|
|
app:srcCompat="@mipmap/ic_launcher" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|