2022-01-20 17:28:59 +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"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="16dp"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:background="?android:attr/selectableItemBackground">
|
2022-01-20 17:28:59 +05:30
|
|
|
|
|
|
|
<de.hdodenhof.circleimageview.CircleImageView
|
|
|
|
android:id="@+id/search_channel_image"
|
2022-05-22 15:10:22 +05:30
|
|
|
android:layout_width="100dp"
|
|
|
|
android:layout_height="100dp"
|
2022-05-04 03:09:20 +05:30
|
|
|
android:layout_marginStart="36dp"
|
2022-01-20 17:28:59 +05:30
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
2022-05-22 15:10:22 +05:30
|
|
|
<LinearLayout
|
2022-05-02 23:30:08 +05:30
|
|
|
android:id="@+id/constraintLayout"
|
|
|
|
android:layout_width="wrap_content"
|
2022-01-20 17:28:59 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-05-04 03:09:20 +05:30
|
|
|
android:layout_marginStart="40dp"
|
2022-06-27 22:47:52 +05:30
|
|
|
android:orientation="vertical"
|
2022-05-02 23:30:08 +05:30
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2022-05-04 03:09:20 +05:30
|
|
|
app:layout_constraintStart_toEndOf="@+id/search_channel_image"
|
2022-05-02 23:30:08 +05:30
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
2022-01-20 17:28:59 +05:30
|
|
|
|
2022-05-02 23:30:08 +05:30
|
|
|
<TextView
|
|
|
|
android:id="@+id/search_channel_name"
|
2022-05-22 15:10:22 +05:30
|
|
|
android:layout_width="wrap_content"
|
2022-05-02 23:30:08 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-05-22 15:10:22 +05:30
|
|
|
android:layout_marginRight="10dp"
|
2022-06-27 22:47:52 +05:30
|
|
|
android:ellipsize="end"
|
2022-05-22 14:26:49 +05:30
|
|
|
android:maxLines="1"
|
2022-06-27 22:47:52 +05:30
|
|
|
android:textSize="16sp" />
|
2022-05-02 23:30:08 +05:30
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/search_views"
|
2022-05-22 15:10:22 +05:30
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
2022-01-20 17:28:59 +05:30
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|