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