|
@@ -1,34 +0,0 @@
|
|
|
-package eu.kanade.tachiyomi.widget
|
|
|
-
|
|
|
-import android.support.design.widget.CoordinatorLayout
|
|
|
-import android.support.design.widget.FloatingActionButton
|
|
|
-import android.support.v4.view.ViewCompat
|
|
|
-import android.view.View
|
|
|
-
|
|
|
-abstract class FABAnimationBase : FloatingActionButton.Behavior() {
|
|
|
-
|
|
|
- var isAnimatingOut = false
|
|
|
-
|
|
|
- override fun onStartNestedScroll(coordinatorLayout: CoordinatorLayout, child: FloatingActionButton,
|
|
|
- directTargetChild: View, target: View, axes: Int, type: Int): Boolean {
|
|
|
- // Ensure we react to vertical scrolling
|
|
|
- return axes == ViewCompat.SCROLL_AXIS_VERTICAL ||
|
|
|
- super.onStartNestedScroll(coordinatorLayout, child, directTargetChild, target, axes, type)
|
|
|
- }
|
|
|
-
|
|
|
- override fun onNestedScroll(coordinatorLayout: CoordinatorLayout, child: FloatingActionButton,
|
|
|
- target: View, dxConsumed: Int, dyConsumed: Int, dxUnconsumed: Int,
|
|
|
- dyUnconsumed: Int, type: Int) {
|
|
|
- super.onNestedScroll(coordinatorLayout, child, target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed, type)
|
|
|
- if (dyConsumed > 0 && !isAnimatingOut && child.visibility == View.VISIBLE) {
|
|
|
- // User scrolled down and the FAB is currently visible -> hide the FAB
|
|
|
- animateOut(child)
|
|
|
- } else if (dyConsumed < 0 && child.visibility != View.VISIBLE) {
|
|
|
- // User scrolled up and the FAB is currently not visible -> show the FAB
|
|
|
- animateIn(child)
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- abstract fun animateOut(button: FloatingActionButton)
|
|
|
- abstract fun animateIn(button: FloatingActionButton)
|
|
|
-}
|