view_recyclerview.xml
1.05 KB
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/recyclerview_parent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white">
<com.cnlive.goldenline.ui.widget.pull2refresh.PullToRefreshLayout
android:id="@+id/pull_to_refresh"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.cnlive.goldenline.ui.widget.PlayerListRecyclerView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipChildren="false"
android:clipToPadding="false"
android:scrollbars="none"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true" />
</com.cnlive.goldenline.ui.widget.pull2refresh.PullToRefreshLayout>
<include layout="@layout/layout_player" />
<include layout="@layout/empty_view" />
</FrameLayout>