<?xml version="1.0" encoding="utf-8"?>
<xyz.stream.view.refresh.layout.AutoRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
    android:background="#cc000000"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <ImageView
            android:id="@+id/iv_back"
            android:padding="10dp"
            android:layout_width="44dp"
            android:layout_height="68dp"
            android:layout_marginTop="50dp"
            android:src="@mipmap/icon_back"
            android:layout_marginStart="50dp"/>
        <xyz.stream.view.tvrecyclerview.TvRecyclerView
            android:orientation="vertical"
            android:id="@+id/lv_group"
            android:paddingTop="40dp"
            android:paddingBottom="40dp"
            android:focusable="false"
            android:layout_width="500dp"
            android:layout_height="match_parent"
            android:layout_marginStart="60dp"
            android:paddingVertical="40dp"
            app:tv_isMenu="true"
            app:tv_layoutManager="V7LinearLayoutManager"/>
        <LinearLayout
            android:gravity="center"
            android:layout_gravity="center"
            android:orientation="vertical"
            android:id="@+id/ll_empty"
            android:visibility="gone"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1">
            <TextView
                android:textSize="36sp"
                android:textStyle="bold"
                android:textColor="@color/white"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/favorite_empty"/>
            <TextView
                android:textSize="28sp"
                android:textColor="@color/black_9"
                android:gravity="center"
                android:layout_width="500dp"
                android:layout_height="wrap_content"
                android:text="@string/favorite_empty_desc"
                android:textAlignment="center"/>
        </LinearLayout>
        <xyz.stream.view.tvrecyclerview.TvRecyclerView
            android:orientation="vertical"
            android:id="@+id/lv_channel"
            android:paddingTop="40dp"
            android:paddingBottom="40dp"
            android:focusable="false"
            android:layout_width="980dp"
            android:layout_height="match_parent"
            android:fadeScrollbars="false"
            android:layout_marginStart="60dp"
            android:paddingVertical="40dp"
            app:tv_isMenu="true"
            app:tv_layoutManager="V7LinearLayoutManager"
            app:tv_selectedItemIsCentered="true"/>
    </LinearLayout>
</xyz.stream.view.refresh.layout.AutoRefreshLayout>
