<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
    android:gravity="center_vertical"
    android:orientation="vertical"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    <FrameLayout
        android:padding="6dp"
        android:layout_width="250dp"
        android:layout_height="250dp">
        <xyz.stream.view.RoundImageView
            android:id="@+id/view_content"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:riv_radius="12dp"/>
        <xyz.stream.view.CustomImageView
            android:id="@+id/image"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>
    </FrameLayout>
    <TextView
        android:textSize="24sp"
        android:textStyle="bold"
        android:textColor="@color/d9"
        android:ellipsize="marquee"
        android:gravity="center"
        android:id="@+id/tv_video_title"
        android:paddingLeft="10dp"
        android:paddingTop="5dp"
        android:paddingRight="10dp"
        android:paddingBottom="5dp"
        android:focusable="false"
        android:focusableInTouchMode="false"
        android:layout_width="250dp"
        android:layout_height="wrap_content"
        android:scrollHorizontally="true"
        android:singleLine="true"
        android:freezesText="true"
        android:paddingHorizontal="10dp"
        android:paddingVertical="5dp"/>
</LinearLayout>
