2017-01-20 15:18:15 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-05-23 14:03:16 -04:00
|
|
|
<FrameLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-01-20 15:18:15 -05:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-05-23 14:03:16 -04:00
|
|
|
android:id="@+id/frame_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2017-01-20 15:18:15 -05:00
|
|
|
|
2017-05-23 14:03:16 -04:00
|
|
|
<android.support.v7.widget.RecyclerView
|
2017-01-20 15:18:15 -05:00
|
|
|
android:layout_width="match_parent"
|
2017-05-23 14:03:16 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/recycler"
|
2017-05-25 06:16:58 -04:00
|
|
|
tools:listitem="@layout/download_item"/>
|
2017-05-23 14:03:16 -04:00
|
|
|
|
|
|
|
<eu.kanade.tachiyomi.widget.EmptyView
|
|
|
|
android:id="@+id/empty_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
</FrameLayout>
|