mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-08-02 04:00:52 +00:00
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_height="fill_parent"
|
||
|
|
android:layout_width="fill_parent"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<android.support.design.widget.CoordinatorLayout
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
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"
|
||
|
|
android:scrollbars="vertical" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:id="@+id/empty_view"
|
||
|
|
style="@style/EmptyView"/>
|
||
|
|
|
||
|
|
</android.support.design.widget.CoordinatorLayout>
|
||
|
|
</LinearLayout>
|