mihon/app/src/main/res/layout/download_controller.xml

22 lines
766 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2020-02-22 00:43:50 +01:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/frame_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
2020-02-22 00:43:50 +01:00
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-02-22 00:43:50 +01:00
tools:listitem="@layout/download_item" />
<eu.kanade.tachiyomi.widget.EmptyView
android:id="@+id/empty_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
2020-02-22 00:43:50 +01:00
android:visibility="gone" />
</FrameLayout>