Fix library empty view alignment

This commit is contained in:
arkon 2020-03-08 20:48:44 -04:00
parent 090a7794b5
commit 48363aa3b0

View File

@ -1,5 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
@ -16,6 +20,8 @@
android:layout_height="wrap_content"
android:layout_gravity="bottom" />
</LinearLayout>
<eu.kanade.tachiyomi.widget.EmptyView
android:id="@+id/empty_view"
android:layout_width="wrap_content"
@ -23,4 +29,4 @@
android:layout_gravity="center"
android:visibility="gone" />
</LinearLayout>
</FrameLayout>