habitica-android/Habitica/res/layout/fragment_recyclerview.xml

25 lines
921 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2018-11-06 15:11:02 +00:00
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
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
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbarSize="3dp"
android:scrollbarThumbVertical="@color/scrollbarThumb"
android:scrollbars="vertical"
android:clipToPadding="false"
2019-04-16 17:07:56 +00:00
android:background="@color/white"/>
2016-04-08 17:29:27 +00:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/emptyView"
style="@style/EmptyView"
android:visibility="gone"/>
2016-04-08 17:29:27 +00:00
2018-11-06 15:11:02 +00:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>