2015-10-17 14:51:54 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-01-05 19:29:27 +03:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2016-03-18 02:13:29 +03:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-11-29 01:58:31 +03: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 14:51:54 +03:00
|
|
|
|
2016-03-19 17:39:19 +03: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"
|
2017-03-11 23:20:46 +03:00
|
|
|
android:visibility="invisible"/>
|
2016-03-19 17:39:19 +03:00
|
|
|
|
2020-01-05 19:29:27 +03:00
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
2015-10-18 20:18:50 +03:00
|
|
|
android:id="@+id/swipe_refresh"
|
2015-10-17 22:31:10 +03:00
|
|
|
android:layout_width="match_parent"
|
2015-11-24 20:45:53 +03:00
|
|
|
android:layout_height="match_parent"
|
2015-11-30 20:45:45 +03:00
|
|
|
android:layout_above="@+id/toolbar_bottom"
|
2015-11-24 20:45:53 +03:00
|
|
|
android:orientation="vertical">
|
2015-10-17 22:31:10 +03:00
|
|
|
|
2020-01-05 19:29:27 +03:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2016-03-14 00:06:32 +03:00
|
|
|
android:id="@+id/recycler"
|
2015-12-11 15:50:47 +03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-01-10 03:10:55 +03:00
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
2020-01-09 05:33:10 +03:00
|
|
|
android:paddingBottom="@dimen/fab_list_padding"
|
|
|
|
android:clipToPadding="false"
|
2015-12-01 20:16:55 +03:00
|
|
|
android:descendantFocusability="blocksDescendants"
|
2020-02-22 02:43:50 +03:00
|
|
|
tools:listitem="@layout/chapters_item" />
|
2015-10-18 20:18:50 +03:00
|
|
|
|
2020-01-05 19:29:27 +03:00
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
2015-10-17 22:31:10 +03:00
|
|
|
|
2017-03-11 23:20:46 +03:00
|
|
|
<eu.davidea.fastscroller.FastScroller
|
|
|
|
android:id="@+id/fast_scroller"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_gravity="end"
|
2017-11-02 18:58:32 +03:00
|
|
|
app:fastScrollerBubbleEnabled="false"
|
2017-03-11 23:20:46 +03:00
|
|
|
tools:visibility="visible"/>
|
|
|
|
|
2020-01-05 19:29:27 +03:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
2016-03-18 02:13:29 +03:00
|
|
|
android:id="@+id/fab"
|
|
|
|
style="@style/Theme.Widget.FAB"
|
|
|
|
app:layout_anchor="@id/recycler"
|
|
|
|
app:srcCompat="@drawable/ic_play_arrow_white_24dp"/>
|
2015-11-30 20:45:45 +03:00
|
|
|
|
2020-01-05 19:29:27 +03:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|