2015-10-17 19:51:54 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-03-18 07:13:29 +08:00
|
|
|
<android.support.design.widget.CoordinatorLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-03-12 21:22:40 +08:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2015-12-01 01:45:45 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2015-10-17 19:51:54 +08:00
|
|
|
|
2016-03-19 22:39:19 +08: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-12 04:20:46 +08:00
|
|
|
android:visibility="invisible"/>
|
2016-03-19 22:39:19 +08:00
|
|
|
|
2015-10-19 01:18:50 +08:00
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
|
|
android:id="@+id/swipe_refresh"
|
2015-10-18 03:31:10 +08:00
|
|
|
android:layout_width="match_parent"
|
2015-11-25 01:45:53 +08:00
|
|
|
android:layout_height="match_parent"
|
2015-12-01 01:45:45 +08:00
|
|
|
android:layout_above="@+id/toolbar_bottom"
|
2015-11-25 01:45:53 +08:00
|
|
|
android:orientation="vertical">
|
2015-10-18 03:31:10 +08:00
|
|
|
|
2015-10-19 01:18:50 +08:00
|
|
|
<android.support.v7.widget.RecyclerView
|
2016-03-14 05:06:32 +08:00
|
|
|
android:id="@+id/recycler"
|
2015-12-11 20:50:47 +08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-11-25 01:45:53 +08:00
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
2015-12-02 01:16:55 +08:00
|
|
|
android:descendantFocusability="blocksDescendants"
|
2017-05-25 18:16:58 +08:00
|
|
|
tools:listitem="@layout/chapters_item">
|
2015-10-19 01:18:50 +08:00
|
|
|
|
|
|
|
</android.support.v7.widget.RecyclerView>
|
|
|
|
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
2015-10-18 03:31:10 +08:00
|
|
|
|
2017-03-12 04:20:46 +08:00
|
|
|
<eu.davidea.fastscroller.FastScroller
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/fast_scroller"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible"/>
|
|
|
|
|
2016-03-18 07:13:29 +08:00
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/fab"
|
|
|
|
style="@style/Theme.Widget.FAB"
|
|
|
|
app:layout_anchor="@id/recycler"
|
|
|
|
app:srcCompat="@drawable/ic_play_arrow_white_24dp"/>
|
2015-12-01 01:45:45 +08:00
|
|
|
|
2016-03-18 07:13:29 +08:00
|
|
|
</android.support.design.widget.CoordinatorLayout>
|