2015-10-17 13:51:54 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-01-05 17:29:27 +01:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2016-03-18 00:13:29 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-11-28 23:58:31 +01: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 13:51:54 +02:00
|
|
|
|
2016-03-19 15:39:19 +01: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 21:20:46 +01:00
|
|
|
android:visibility="invisible"/>
|
2016-03-19 15:39:19 +01:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
2015-10-18 19:18:50 +02:00
|
|
|
android:id="@+id/swipe_refresh"
|
2015-10-17 21:31:10 +02:00
|
|
|
android:layout_width="match_parent"
|
2015-11-24 18:45:53 +01:00
|
|
|
android:layout_height="match_parent"
|
2015-11-30 18:45:45 +01:00
|
|
|
android:layout_above="@+id/toolbar_bottom"
|
2015-11-24 18:45:53 +01:00
|
|
|
android:orientation="vertical">
|
2015-10-17 21:31:10 +02:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2016-03-13 22:06:32 +01:00
|
|
|
android:id="@+id/recycler"
|
2015-12-11 13:50:47 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-11-24 18:45:53 +01:00
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
2015-12-01 18:16:55 +01:00
|
|
|
android:descendantFocusability="blocksDescendants"
|
2017-05-25 12:16:58 +02:00
|
|
|
tools:listitem="@layout/chapters_item">
|
2015-10-18 19:18:50 +02:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
</androidx.recyclerview.widget.RecyclerView>
|
2015-10-18 19:18:50 +02:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
2015-10-17 21:31:10 +02:00
|
|
|
|
2017-03-11 21:20:46 +01: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 16:58:32 +01:00
|
|
|
app:fastScrollerBubbleEnabled="false"
|
2017-03-11 21:20:46 +01:00
|
|
|
tools:visibility="visible"/>
|
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
2016-03-18 00:13:29 +01: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 18:45:45 +01:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|