2015-10-21 23:20:03 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-07-10 22:44:54 +08:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-08-29 04:59:00 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2020-07-10 22:44:54 +08:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/catalogue_view"
|
2017-09-23 19:11:39 +08:00
|
|
|
android:layout_width="match_parent"
|
2020-07-10 22:44:54 +08:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
tools:context=".ui.browse.source.browse.BrowseSourceController">
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress"
|
|
|
|
style="?android:attr/progressBarStyleLarge"
|
|
|
|
android:layout_width="wrap_content"
|
2020-03-10 06:45:38 +08:00
|
|
|
android:layout_height="match_parent"
|
2020-07-10 22:44:54 +08:00
|
|
|
android:layout_gravity="center"
|
2020-02-22 07:43:50 +08:00
|
|
|
android:visibility="gone" />
|
2016-01-23 00:37:23 +08:00
|
|
|
|
2020-07-10 22:44:54 +08:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<eu.kanade.tachiyomi.widget.EmptyView
|
|
|
|
android:id="@+id/empty_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center"
|
|
|
|
android:visibility="gone" />
|
2015-10-10 20:28:57 +08:00
|
|
|
|
2020-07-10 22:44:54 +08:00
|
|
|
</FrameLayout>
|