2018-01-12 16:02:05 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-05-16 12:15:04 -04:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-01-12 16:02:05 -05:00
|
|
|
android:layout_width="match_parent"
|
2020-05-16 12:15:04 -04:00
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recycler"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2020-07-04 13:45:01 -04:00
|
|
|
<eu.kanade.tachiyomi.widget.MaterialFastScroll
|
2020-05-16 12:15:04 -04:00
|
|
|
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" />
|
|
|
|
|
|
|
|
</FrameLayout>
|