2015-10-21 17:20:03 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-22 00:43:50 +01:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-04-10 20:43:13 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
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-03-09 23:45:38 +01:00
|
|
|
<FrameLayout
|
2017-09-23 13:11:39 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-04-11 00:07:09 +02:00
|
|
|
android:layout_height="match_parent">
|
2016-08-28 22:59:00 +02:00
|
|
|
|
2020-03-09 23:45:38 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/catalogue_view"
|
|
|
|
android:layout_width="match_parent"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:layout_height="match_parent"
|
2020-03-09 23:45:38 +01:00
|
|
|
android:orientation="vertical"
|
2020-04-12 18:21:47 +02:00
|
|
|
tools:context="eu.kanade.tachiyomi.ui.source.browse.BrowseSourceController">
|
2020-03-09 23:45:38 +01:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress"
|
|
|
|
style="?android:attr/progressBarStyleLarge"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2020-04-10 20:43:13 +02:00
|
|
|
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
|
|
|
android:id="@+id/fab_filter"
|
|
|
|
style="@style/Theme.Widget.FAB"
|
|
|
|
android:text="@string/action_filter"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:icon="@drawable/ic_filter_list_24dp"
|
|
|
|
app:layout_anchor="@id/catalogue_view" />
|
|
|
|
|
2020-03-09 23:45:38 +01:00
|
|
|
<eu.kanade.tachiyomi.widget.EmptyView
|
|
|
|
android:id="@+id/empty_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:visibility="gone" />
|
2016-01-22 17:37:23 +01:00
|
|
|
|
2020-03-09 23:45:38 +01:00
|
|
|
</FrameLayout>
|
2015-10-10 14:28:57 +02:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|