tachiyomi/app/src/main/res/layout/history_controller.xml

23 lines
800 B
XML
Raw Normal View History

2016-06-06 15:26:56 +02:00
<?xml version="1.0" encoding="utf-8"?>
2017-05-06 15:49:39 +02:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2020-02-22 00:43:50 +01:00
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
2016-06-06 15:26:56 +02:00
<androidx.recyclerview.widget.RecyclerView
2016-06-06 15:26:56 +02:00
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-01-06 18:50:40 +01:00
android:clipToPadding="false"
tools:listitem="@layout/history_item" />
2016-06-06 15:26:56 +02:00
2017-05-06 15:49:39 +02:00
<eu.kanade.tachiyomi.widget.EmptyView
android:id="@+id/empty_view"
android:layout_width="wrap_content"
2020-02-22 00:43:50 +01:00
android:layout_height="wrap_content"
2017-05-06 15:49:39 +02:00
android:layout_gravity="center"
2020-02-22 00:43:50 +01:00
android:visibility="gone" />
2017-05-06 15:49:39 +02:00
</FrameLayout>