<?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="match_parent">
    <xyz.stream.view.tvrecyclerview.TvRecyclerView
        android:orientation="horizontal"
        android:id="@+id/rv_sport_type"
        android:paddingLeft="30dp"
        android:paddingRight="30dp"
        android:paddingBottom="20dp"
        android:focusable="false"
        android:visibility="gone"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:paddingHorizontal="30dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:tv_isMenu="true"
        app:tv_layoutManager="V7LinearLayoutManager"
        app:tv_selectedItemIsCentered="true"/>
    <xyz.stream.view.refresh.layout.AutoRefreshLayout
        android:id="@+id/refresh_layout"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/rv_sport_type">
        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/rv_sports"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>
    </xyz.stream.view.refresh.layout.AutoRefreshLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
