2017-05-06 15:49:39 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-01-01 14:57:20 +01:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-04-12 13:14:42 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-05-06 15:49:39 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2017-12-04 22:22:35 +01:00
|
|
|
android:id="@+id/library_pager"/>
|
2017-05-06 15:49:39 +02:00
|
|
|
|
2019-04-12 12:50:24 +02:00
|
|
|
<ProgressBar
|
|
|
|
|
android:id="@+id/library_progress"
|
|
|
|
|
style="?android:attr/progressBarStyle"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2019-04-12 13:14:42 +02:00
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
tools:visibility="visible" />
|
2019-04-12 12:50:24 +02:00
|
|
|
|
2017-05-06 15:49:39 +02:00
|
|
|
<eu.kanade.tachiyomi.widget.EmptyView
|
|
|
|
|
android:id="@+id/empty_view"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
|
|
</FrameLayout>
|