2017-04-03 11:18:39 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:id="@+id/refresh.layout"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
2017-04-04 19:38:01 +00:00
|
|
|
<FrameLayout
|
2017-04-03 11:18:39 +00:00
|
|
|
android:id="@+id/coordinatorLayout"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
|
|
<com.habitrpg.android.habitica.ui.helpers.RecyclerViewEmptySupport
|
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:scrollbarSize="3dp"
|
|
|
|
|
android:scrollbarThumbVertical="@color/md_grey_500"
|
2017-04-04 19:38:01 +00:00
|
|
|
android:scrollbars="vertical"
|
|
|
|
|
android:clipToPadding="false"
|
|
|
|
|
android:paddingBottom="?attr/actionBarSize" />
|
2017-04-03 11:18:39 +00:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/empty_view"
|
|
|
|
|
style="@style/EmptyView"/>
|
2017-04-04 19:38:01 +00:00
|
|
|
</FrameLayout>
|
2017-04-03 11:18:39 +00:00
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|