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