2022-08-24 21:26:57 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-12-23 19:27:10 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-08-24 21:26:57 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingHorizontal="4dp"
|
|
|
|
android:paddingVertical="8dp">
|
|
|
|
|
2022-12-23 19:24:53 +05:30
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
2022-08-24 21:26:57 +05:30
|
|
|
android:id="@+id/channel_avatar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="50dp"
|
2022-12-23 19:24:53 +05:30
|
|
|
android:layout_gravity="center"
|
2022-12-23 19:27:10 +05:30
|
|
|
app:shapeAppearance="@style/CircleImageView" />
|
2022-08-24 21:26:57 +05:30
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/channel_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1" />
|
|
|
|
|
|
|
|
</LinearLayout>
|