2022-02-12 20:00:36 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:background="?android:attr/selectableItemBackground"
|
|
|
|
>
|
|
|
|
<de.hdodenhof.circleimageview.CircleImageView
|
|
|
|
android:id="@+id/subscription_channel_image"
|
2022-05-14 21:44:53 +05:30
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
2022-02-12 20:00:36 +05:30
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginBottom="4dp"/>
|
|
|
|
<TextView
|
|
|
|
android:text="kirrrrrrrrrrrrrrrrrrrrrrrrrrfgdfg"
|
|
|
|
android:id="@+id/subscription_channel_name"
|
|
|
|
android:layout_width="60dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1" />
|
|
|
|
</LinearLayout>
|