<?xml version="1.0" encoding="utf-8"?>
<xyz.stream.view.refresh.layout.AutoRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/refresh_layout"
    android:background="@color/bg_color"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <androidx.core.widget.NestedScrollView
        android:id="@+id/nsv_recommend"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true">
        <LinearLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <include
                android:id="@+id/header_for_you"
                layout="@layout/header_for_you"/>
            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/rv_recommend"
                android:focusable="false"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"/>
        </LinearLayout>
    </androidx.core.widget.NestedScrollView>
</xyz.stream.view.refresh.layout.AutoRefreshLayout>
