<com.jude.easyrecyclerview.swipe.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:id="@+id/ptr_layout"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<android.support.v7.widget.RecyclerView
|
android:id="@android:id/list"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:scrollbars="vertical|horizontal"
|
android:clickable="true"/>
|
<FrameLayout
|
android:id="@+id/empty"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:clickable="true"
|
/>
|
|
<FrameLayout
|
android:id="@+id/progress"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:clickable="true"
|
/>
|
|
<FrameLayout
|
android:id="@+id/error"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:clickable="true"
|
/>
|
|
</com.jude.easyrecyclerview.swipe.SwipeRefreshLayout>
|