2015-10-17 07:51:54 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-03-17 19:13:29 -04:00
|
|
|
<android.support.design.widget.CoordinatorLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-03-12 08:22:40 -05:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2015-11-30 12:45:45 -05:00
|
|
|
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"
|
2017-03-11 15:20:46 -05:00
|
|
|
android:visibility="invisible"/>
|
2016-03-19 10:39:19 -04:00
|
|
|
|
2015-10-18 13:18:50 -04:00
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
|
|
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
|
|
|
|
2015-10-18 13:18:50 -04:00
|
|
|
<android.support.v7.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"
|
2015-11-24 12:45:53 -05:00
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
2015-12-01 12:16:55 -05:00
|
|
|
android:descendantFocusability="blocksDescendants"
|
2015-11-24 12:45:53 -05:00
|
|
|
tools:listitem="@layout/item_chapter">
|
2015-10-18 13:18:50 -04:00
|
|
|
|
|
|
|
</android.support.v7.widget.RecyclerView>
|
|
|
|
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
2015-10-17 15:31:10 -04:00
|
|
|
|
2017-03-11 15:20:46 -05: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-17 19:13:29 -04: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-11-30 12:45:45 -05:00
|
|
|
|
2016-03-17 19:13:29 -04:00
|
|
|
</android.support.design.widget.CoordinatorLayout>
|