tachiyomi/app/src/main/res/layout/chapters_controller.xml

58 lines
2.3 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2019-10-29 06:51:46 +01:00
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
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"
2019-10-30 09:19:30 +01:00
android:clipToPadding="false"
android:orientation="vertical">
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"
2019-10-30 09:19:30 +01:00
android:clipToPadding="false"
2016-03-19 15:39:19 +01:00
android:elevation="5dp"
2017-03-11 21:20:46 +01:00
android:visibility="invisible"/>
2016-03-19 15:39:19 +01:00
2019-10-29 06:51:46 +01:00
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/swipe_refresh"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/toolbar_bottom"
2019-10-30 09:19:30 +01:00
android:clipToPadding="false"
android:orientation="vertical">
2019-10-29 06:51:46 +01:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
2019-10-25 10:44:47 +02:00
android:clipToPadding="false"
2015-12-01 18:16:55 +01:00
android:descendantFocusability="blocksDescendants"
2017-05-25 12:16:58 +02:00
tools:listitem="@layout/chapters_item">
2019-10-29 06:51:46 +01:00
</androidx.recyclerview.widget.RecyclerView>
2019-10-29 06:51:46 +01:00
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
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"
app:fastScrollerBubbleEnabled="false"
2017-03-11 21:20:46 +01:00
tools:visibility="visible"/>
2019-10-29 06:51:46 +01:00
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
style="@style/Theme.Widget.FAB"
app:layout_anchor="@id/recycler"
2019-10-30 09:19:30 +01:00
app:layout_anchorGravity="bottom|right|end"
app:srcCompat="@drawable/ic_play_arrow_white_24dp"/>
2019-10-29 06:51:46 +01:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>