2017-09-23 07:11:39 -04: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-03-22 12:43:53 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-04-18 14:47:22 -04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-09-23 07:11:39 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2017-09-23 07:11:39 -04:00
|
|
|
android:id="@+id/recycler"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-28 23:03:30 -04:00
|
|
|
tools:listitem="@layout/source_main_controller_card_header" />
|
2017-09-23 07:11:39 -04:00
|
|
|
|
2020-05-06 23:16:02 -04:00
|
|
|
<eu.kanade.tachiyomi.ui.library.MaterialFastScroll
|
2020-03-22 12:43:53 -04:00
|
|
|
android:id="@+id/fast_scroller"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2020-05-02 14:39:47 -04:00
|
|
|
android:layout_gravity="right"
|
|
|
|
android:layoutDirection="ltr"
|
2020-03-22 12:43:53 -04:00
|
|
|
app:fastScrollerBubbleEnabled="false"
|
2020-04-18 14:47:22 -04:00
|
|
|
tools:visibility="visible" />
|
2020-03-22 12:43:53 -04:00
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
</FrameLayout>
|