2015-10-17 07:51:54 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-18 14:47:22 -04:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-11-28 17:58:31 -05:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2015-10-17 07:51:54 -04:00
|
|
|
|
2016-03-19 10:39:19 -04:00
|
|
|
<eu.kanade.tachiyomi.widget.RevealAnimationView
|
|
|
|
android:id="@+id/reveal_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="?attr/colorAccent"
|
|
|
|
android:elevation="5dp"
|
2020-04-18 14:47:22 -04:00
|
|
|
android:visibility="invisible" />
|
2016-03-19 10:39:19 -04:00
|
|
|
|
2020-03-10 22:53:49 -04:00
|
|
|
<eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout
|
2015-10-18 13:18:50 -04:00
|
|
|
android:id="@+id/swipe_refresh"
|
2015-10-17 15:31:10 -04:00
|
|
|
android:layout_width="match_parent"
|
2015-11-24 12:45:53 -05:00
|
|
|
android:layout_height="match_parent"
|
2015-11-30 12:45:45 -05:00
|
|
|
android:layout_above="@+id/toolbar_bottom"
|
2015-11-24 12:45:53 -05:00
|
|
|
android:orientation="vertical">
|
2015-10-17 15:31:10 -04:00
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2016-03-13 17:06:32 -04:00
|
|
|
android:id="@+id/recycler"
|
2015-12-11 07:50:47 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-01-09 19:10:55 -05:00
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
2020-01-08 21:33:10 -05:00
|
|
|
android:clipToPadding="false"
|
2015-12-01 12:16:55 -05:00
|
|
|
android:descendantFocusability="blocksDescendants"
|
2020-04-18 14:47:22 -04:00
|
|
|
android:paddingBottom="@dimen/fab_list_padding"
|
2020-02-21 18:43:50 -05:00
|
|
|
tools:listitem="@layout/chapters_item" />
|
2015-10-18 13:18:50 -04:00
|
|
|
|
2020-03-10 22:53:49 -04:00
|
|
|
</eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout>
|
2015-10-17 15:31:10 -04:00
|
|
|
|
2020-05-06 23:16:02 -04:00
|
|
|
<eu.kanade.tachiyomi.ui.library.MaterialFastScroll
|
2017-03-11 15:20:46 -05:00
|
|
|
android:id="@+id/fast_scroller"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_centerHorizontal="true"
|
2020-05-02 14:39:47 -04:00
|
|
|
android:layout_gravity="right"
|
|
|
|
android:layoutDirection="ltr"
|
2017-11-02 11:58:32 -04:00
|
|
|
app:fastScrollerBubbleEnabled="false"
|
2020-04-18 14:47:22 -04:00
|
|
|
tools:visibility="visible" />
|
2017-03-11 15:20:46 -05:00
|
|
|
|
2020-03-08 17:37:42 -04:00
|
|
|
<eu.kanade.tachiyomi.widget.ActionToolbar
|
|
|
|
android:id="@+id/action_toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-29 08:58:52 -04:00
|
|
|
android:layout_gravity="bottom"
|
|
|
|
app:layout_dodgeInsetEdges="bottom" />
|
2020-03-08 17:37:42 -04:00
|
|
|
|
2020-04-10 15:39:28 -04:00
|
|
|
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
2016-03-17 19:13:29 -04:00
|
|
|
android:id="@+id/fab"
|
|
|
|
style="@style/Theme.Widget.FAB"
|
2020-04-10 15:39:28 -04:00
|
|
|
android:text="@string/action_resume"
|
2020-04-18 14:47:22 -04:00
|
|
|
app:icon="@drawable/ic_play_arrow_24dp"
|
|
|
|
app:layout_anchor="@id/recycler" />
|
2015-11-30 12:45:45 -05:00
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|