2017-04-03 11:18:39 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-11-06 15:11:02 +00:00
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-04-03 11:18:39 +00:00
|
|
|
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"
|
2020-02-04 08:19:34 +00:00
|
|
|
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:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
2017-04-10 23:08:07 +00:00
|
|
|
<LinearLayout
|
2017-10-31 17:31:06 +00:00
|
|
|
android:id="@+id/emptyView"
|
2020-02-04 08:19:34 +00:00
|
|
|
style="@style/EmptyView"
|
2017-04-03 11:18:39 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-01-15 17:32:17 +00:00
|
|
|
android:layout_marginTop="60dp"
|
2020-02-04 08:19:34 +00:00
|
|
|
android:orientation="vertical"
|
2020-01-10 14:58:38 +00:00
|
|
|
android:visibility="gone"
|
2020-02-04 08:19:34 +00:00
|
|
|
tools:visibility="visible">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/empty_icon_view"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginBottom="4dp" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/emptyViewTitle"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginBottom="6dp"
|
|
|
|
|
android:gravity="center"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_ternary"
|
2020-02-04 08:19:34 +00:00
|
|
|
android:textSize="@dimen/card_medium_text"
|
|
|
|
|
tools:text="No Items" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/emptyViewDescription"
|
|
|
|
|
style="@style/Body2"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_ternary"
|
2020-02-04 08:19:34 +00:00
|
|
|
tools:text="No Items" />
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<com.habitrpg.android.habitica.ui.helpers.RecyclerViewEmptySupport
|
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:clipToPadding="false"
|
|
|
|
|
android:scrollbarSize="3dp"
|
|
|
|
|
android:scrollbarThumbVertical="@color/scrollbarThumb"
|
|
|
|
|
android:scrollbars="vertical" />
|
2017-04-10 23:08:07 +00:00
|
|
|
|
2017-04-04 19:38:01 +00:00
|
|
|
</FrameLayout>
|
2018-11-06 15:11:02 +00:00
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|