2015-10-21 17:20:03 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-07-10 16:44:54 +02:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-08-28 22:59:00 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2020-07-10 16:44:54 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/catalogue_view"
|
2017-09-23 13:11:39 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-07-10 16:44:54 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2020-12-26 17:24:10 +01:00
|
|
|
tools:context=".ui.browse.source.browse.BrowseSourceController" />
|
2020-07-10 16:44:54 +02:00
|
|
|
|
2020-12-26 17:24:10 +01: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 16:44:54 +02: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 14:28:57 +02:00
|
|
|
|
2020-07-10 16:44:54 +02:00
|
|
|
</FrameLayout>
|