2015-10-21 17:20:03 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-10-29 06:51:46 +01:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2016-08-28 22:59:00 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-03-23 00:08:17 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2016-08-28 22:59:00 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-04-19 10:33:57 +02:00
|
|
|
android:id="@+id/source_layout"
|
2016-08-28 22:59:00 +02:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
2017-09-23 13:11:39 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:id="@+id/catalogue_view"
|
2020-04-19 10:33:57 +02:00
|
|
|
tools:context="eu.kanade.tachiyomi.ui.source.browse.BrowseSourceController">
|
2016-08-28 22:59:00 +02:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress"
|
|
|
|
style="?android:attr/progressBarStyleLarge"
|
|
|
|
android:layout_width="wrap_content"
|
2016-03-12 14:22:40 +01:00
|
|
|
android:layout_height="match_parent"
|
2016-08-28 22:59:00 +02:00
|
|
|
android:layout_gravity="center_vertical|center_horizontal"
|
|
|
|
android:visibility="gone"/>
|
2016-01-22 17:37:23 +01:00
|
|
|
|
2016-08-28 22:59:00 +02:00
|
|
|
</LinearLayout>
|
2020-03-23 00:08:17 +01:00
|
|
|
|
|
|
|
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
|
|
|
android:id="@+id/fab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
app:backgroundTint="?colorAccent"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:text="@string/filter"
|
2020-03-23 00:08:17 +01:00
|
|
|
android:layout_gravity="bottom|end"
|
|
|
|
app:icon="@drawable/ic_filter_list_white_24dp"
|
|
|
|
app:iconTint="@color/md_white_1000"
|
|
|
|
android:textColor="@color/md_white_1000"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:layout_height="wrap_content"/>
|
2015-10-10 14:28:57 +02:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|