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"
|
2017-04-10 23:08:07 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-11-14 20:04:38 +00:00
|
|
|
android:id="@+id/refreshLayout"
|
2017-04-03 11:18:39 +00:00
|
|
|
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
|
|
|
|
2017-04-10 23:08:07 +00:00
|
|
|
<LinearLayout
|
2017-10-31 17:31:06 +00:00
|
|
|
android:id="@+id/emptyView"
|
2017-04-03 11:18:39 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-04-10 23:08:07 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:visibility="gone">
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
style="@style/EmptyView">
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-11-14 20:04:38 +00:00
|
|
|
android:id="@+id/emptyViewTitle"
|
2017-04-10 23:08:07 +00:00
|
|
|
tools:text="No Items"
|
|
|
|
|
android:textSize="@dimen/card_medium_text"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-11-14 20:04:38 +00:00
|
|
|
android:id="@+id/emptyViewDescription"
|
2017-04-10 23:08:07 +00:00
|
|
|
tools:text="No Items" />
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/justin_textbox"
|
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
|
/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
2017-04-04 19:38:01 +00:00
|
|
|
</FrameLayout>
|
2017-04-03 11:18:39 +00:00
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|