<?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">
    <TextView
        android:textSize="36sp"
        android:textStyle="bold"
        android:textColor="@color/white"
        android:id="@+id/tv_tag_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="50dp"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"/>
    <ImageView
        android:id="@+id/iv_more"
        android:background="@drawable/selector_circle_red"
        android:padding="10dp"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:visibility="gone"
        android:clickable="true"
        android:layout_width="68dp"
        android:layout_height="68dp"
        android:src="@drawable/arrow_right"
        android:layout_marginEnd="50dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"/>
    <com.facebook.shimmer.ShimmerFrameLayout
        android:id="@+id/tag_title_image"
        android:visibility="gone"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginStart="50dp"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:shimmer_auto_start="true"
        app:shimmer_base_color="@android:color/black"
        app:shimmer_duration="2000"
        app:shimmer_highlight_color="@android:color/white">
        <androidx.constraintlayout.widget.ConstraintLayout
            android:background="@color/black_3"
            android:layout_width="400dp"
            android:layout_height="50dp"/>
    </com.facebook.shimmer.ShimmerFrameLayout>
    <xyz.stream.view.tvrecyclerview.TvRecyclerView
        android:orientation="horizontal"
        android:id="@+id/rv_tag_videos"
        android:paddingLeft="45dp"
        android:paddingTop="15dp"
        android:paddingRight="45dp"
        android:paddingBottom="15dp"
        android:focusable="false"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="12dp"
        android:layout_marginBottom="10dp"
        android:paddingHorizontal="45dp"
        android:paddingVertical="15dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/tv_tag_title"
        app:tv_isMenu="false"
        app:tv_layoutManager="V7LinearLayoutManager"
        app:tv_selectedItemIsCentered="true"/>
</androidx.constraintlayout.widget.ConstraintLayout>
