Remove unused Animator lambda parameter + small cleanup

This commit is contained in:
Benoit Marty 2022-10-13 11:11:23 +02:00
parent e9e2e5011b
commit c17b55b874

View file

@ -96,31 +96,27 @@ class SwipeToDismissHandler(
.setDuration(ANIMATION_DURATION) .setDuration(ANIMATION_DURATION)
.setInterpolator(AccelerateInterpolator()) .setInterpolator(AccelerateInterpolator())
.setUpdateListener { onSwipeViewMove(swipeView.translationY, translationLimit) } .setUpdateListener { onSwipeViewMove(swipeView.translationY, translationLimit) }
.setAnimatorListener(onAnimationEnd = { .setAnimatorEndListener {
if (translationTo != 0f) { if (translationTo != 0f) {
onDismiss() onDismiss()
} }
// remove the update listener, otherwise it will be saved on the next animation execution: // remove the update listener, otherwise it will be saved on the next animation execution:
swipeView.animate().setUpdateListener(null) swipeView.animate().setUpdateListener(null)
}) }
.start() .start()
} }
} }
internal fun ViewPropertyAnimator.setAnimatorListener( private fun ViewPropertyAnimator.setAnimatorEndListener(
onAnimationEnd: ((Animator?) -> Unit)? = null, onAnimationEnd: () -> Unit,
onAnimationStart: ((Animator?) -> Unit)? = null ) = setListener(
) = this.setListener(
object : AnimatorListenerAdapter() { object : AnimatorListenerAdapter() {
override fun onAnimationEnd(animation: Animator) { override fun onAnimationEnd(animation: Animator) {
onAnimationEnd?.invoke(animation) onAnimationEnd()
} }
override fun onAnimationStart(animation: Animator) {
onAnimationStart?.invoke(animation)
} }
}) )
internal val View?.hitRect: Rect private val View.hitRect: Rect
get() = Rect().also { this?.getHitRect(it) } get() = Rect().also { getHitRect(it) }