2015-06-20 18:46:04 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-07-11 18:49:09 +00:00
|
|
|
<android.support.design.widget.CoordinatorLayout
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:id="@+id/coordinatorLayout"
|
2015-06-20 18:46:04 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
2016-04-08 17:29:27 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.helpers.RecyclerViewEmptySupport
|
2015-06-20 18:46:04 +00:00
|
|
|
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"/>
|
2015-06-20 18:46:04 +00:00
|
|
|
|
2016-04-08 17:29:27 +00:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-31 17:31:06 +00:00
|
|
|
android:id="@+id/emptyView"
|
2017-04-11 13:49:31 +00:00
|
|
|
style="@style/EmptyView"
|
|
|
|
|
android:visibility="gone"/>
|
2016-04-08 17:29:27 +00:00
|
|
|
|
2015-07-11 18:49:09 +00:00
|
|
|
</android.support.design.widget.CoordinatorLayout>
|