2017-04-03 11:18:39 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-06-21 11:39:00 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-04-03 11:18:39 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2021-06-21 11:39:00 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
|
|
|
android:id="@+id/refreshLayout"
|
2017-04-03 11:18:39 +00:00
|
|
|
android:layout_width="match_parent"
|
2021-06-21 11:39:00 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
2020-02-04 08:19:34 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.helpers.RecyclerViewEmptySupport
|
|
|
|
|
android:id="@+id/recyclerView"
|
2022-05-02 15:25:53 +00:00
|
|
|
android:layout_width="wrap_content"
|
2020-02-04 08:19:34 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:clipToPadding="false"
|
|
|
|
|
android:scrollbarSize="3dp"
|
|
|
|
|
android:scrollbarThumbVertical="@color/scrollbarThumb"
|
2022-05-02 15:25:53 +00:00
|
|
|
android:layout_gravity="center"
|
2020-02-04 08:19:34 +00:00
|
|
|
android:scrollbars="vertical" />
|
2021-06-21 11:39:00 +00:00
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
|
|
|
|
</LinearLayout>
|