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"
|
2020-12-27 00:24:10 +08:00
|
|
|
tools:context=".ui.browse.source.browse.BrowseSourceController" />
|
2020-07-10 22:44:54 +08:00
|
|
|
|
2020-12-27 00:24:10 +08:00
|
|
|
<com.google.android.material.progressindicator.CircularProgressIndicator
|
|
|
|
android:id="@+id/progress"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:indeterminate="true"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible" />
|
2020-07-10 22:44:54 +08:00
|
|
|
|
|
|
|
<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>
|