2016-01-18 12:04:07 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-03-10 22:53:49 -04:00
|
|
|
<eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-04-29 08:58:52 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2016-12-23 09:58:53 -05:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/swipe_refresh"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2016-01-18 12:04:07 -05:00
|
|
|
|
2017-01-22 14:06:43 -05:00
|
|
|
<FrameLayout
|
2016-01-18 12:04:07 -05:00
|
|
|
android:layout_width="match_parent"
|
2017-01-22 14:06:43 -05:00
|
|
|
android:layout_height="match_parent">
|
2016-06-06 09:26:56 -04:00
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2017-01-22 14:06:43 -05:00
|
|
|
android:id="@+id/recycler"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-04-18 14:47:22 -04:00
|
|
|
android:clipToPadding="false"
|
2021-05-22 12:01:14 -04:00
|
|
|
android:paddingTop="4dp"
|
2020-04-26 20:04:05 -04:00
|
|
|
android:paddingBottom="@dimen/action_toolbar_list_padding"
|
2020-03-06 22:55:44 -05:00
|
|
|
tools:listitem="@layout/updates_item" />
|
2017-01-22 14:06:43 -05:00
|
|
|
|
2020-07-04 13:45:01 -04:00
|
|
|
<eu.kanade.tachiyomi.widget.MaterialFastScroll
|
2020-05-16 10:17:09 -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" />
|
|
|
|
|
2017-05-06 09:49:39 -04:00
|
|
|
<eu.kanade.tachiyomi.widget.EmptyView
|
|
|
|
android:id="@+id/empty_view"
|
|
|
|
android:layout_width="wrap_content"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:layout_height="wrap_content"
|
2017-05-06 09:49:39 -04:00
|
|
|
android:layout_gravity="center"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:visibility="gone" />
|
2017-05-06 09:49:39 -04:00
|
|
|
|
2017-01-22 14:06:43 -05:00
|
|
|
</FrameLayout>
|
2016-01-18 12:04:07 -05:00
|
|
|
|
2020-03-10 22:53:49 -04:00
|
|
|
</eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout>
|