2017-01-20 15:18:15 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-21 18:43:50 -05:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-05-01 19:39:30 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-01-20 15:18:15 -05:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-05-23 14:03:16 -04:00
|
|
|
android:id="@+id/frame_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2017-01-20 15:18:15 -05:00
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2020-02-21 18:43:50 -05:00
|
|
|
android:id="@+id/recycler"
|
2017-01-20 15:18:15 -05:00
|
|
|
android:layout_width="match_parent"
|
2020-04-29 09:49:54 -04:00
|
|
|
android:layout_height="match_parent"
|
2020-05-01 19:39:30 -04:00
|
|
|
android:clipToPadding="false"
|
|
|
|
android:paddingBottom="@dimen/fab_list_padding"
|
2020-02-21 18:43:50 -05:00
|
|
|
tools:listitem="@layout/download_item" />
|
2017-05-23 14:03:16 -04:00
|
|
|
|
2020-06-01 08:55:37 -04:00
|
|
|
<eu.kanade.tachiyomi.ui.library.MaterialFastScroll
|
|
|
|
android:id="@+id/fast_scroller"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
app:fastScrollerBubbleEnabled="false"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
2020-05-01 19:39:30 -04:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
android:id="@+id/fab"
|
|
|
|
style="@style/Theme.Widget.FAB"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:layout_anchor="@id/recycler"
|
|
|
|
app:srcCompat="@drawable/ic_pause_24dp" />
|
|
|
|
|
2017-05-23 14:03:16 -04:00
|
|
|
<eu.kanade.tachiyomi.widget.EmptyView
|
|
|
|
android:id="@+id/empty_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:visibility="gone" />
|
2017-05-23 14:03:16 -04:00
|
|
|
|
|
|
|
</FrameLayout>
|