2017-09-23 14:11:39 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-22 02:43:50 +03:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-03-22 19:43:53 +03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-04-18 21:47:22 +03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-09-23 14:11:39 +03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2020-01-05 19:29:27 +03:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2017-09-23 14:11:39 +03:00
|
|
|
android:id="@+id/recycler"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-05-21 00:43:34 +03:00
|
|
|
android:clipToPadding="false"
|
|
|
|
android:paddingBottom="@dimen/action_toolbar_list_padding"
|
2020-04-29 06:03:30 +03:00
|
|
|
tools:listitem="@layout/source_main_controller_card_header" />
|
2017-09-23 14:11:39 +03:00
|
|
|
|
2020-05-07 06:16:02 +03:00
|
|
|
<eu.kanade.tachiyomi.ui.library.MaterialFastScroll
|
2020-03-22 19:43:53 +03:00
|
|
|
android:id="@+id/fast_scroller"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2020-05-08 05:40:23 +03:00
|
|
|
android:layout_gravity="end"
|
2020-03-22 19:43:53 +03:00
|
|
|
app:fastScrollerBubbleEnabled="false"
|
2020-04-18 21:47:22 +03:00
|
|
|
tools:visibility="visible" />
|
2020-03-22 19:43:53 +03:00
|
|
|
|
2020-01-05 19:29:27 +03:00
|
|
|
</FrameLayout>
|