Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use springs for RecyclerView.ItemAnimator #751

Merged
merged 4 commits into from
Jul 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,197 @@
/*
* Copyright 2019 Google, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package io.plaidapp.core.ui.recyclerview

import android.annotation.SuppressLint
import android.view.Gravity
import android.view.View
import androidx.dynamicanimation.animation.SpringAnimation.ALPHA
import androidx.dynamicanimation.animation.SpringAnimation.TRANSLATION_X
import androidx.dynamicanimation.animation.SpringAnimation.TRANSLATION_Y
import androidx.recyclerview.widget.DefaultItemAnimator
import androidx.recyclerview.widget.RecyclerView
import io.plaidapp.core.util.listenForAllSpringsEnd
import io.plaidapp.core.util.spring

/**
* A [RecyclerView.ItemAnimator] that fades & slides newly added items in from a given
* direction.
*/
open class SlideInItemAnimator @JvmOverloads constructor(
slideFromEdge: Int = Gravity.BOTTOM, // Default to sliding in upward
layoutDirection: Int = -1
) : DefaultItemAnimator() {

private val slideFromEdge: Int = Gravity.getAbsoluteGravity(slideFromEdge, layoutDirection)
private val pendingAdds = mutableListOf<RecyclerView.ViewHolder>()
private val runningAdds = mutableListOf<RecyclerView.ViewHolder>()
private val pendingMoves = mutableListOf<RecyclerView.ViewHolder>()
private val runningMoves = mutableListOf<RecyclerView.ViewHolder>()

@SuppressLint("RtlHardcoded")
override fun animateAdd(holder: RecyclerView.ViewHolder): Boolean {
holder.itemView.alpha = 0f
when (slideFromEdge) {
Gravity.LEFT -> holder.itemView.translationX = -holder.itemView.width / 3f
Gravity.TOP -> holder.itemView.translationY = -holder.itemView.height / 3f
Gravity.RIGHT -> holder.itemView.translationX = holder.itemView.width / 3f
else // Gravity.BOTTOM
-> holder.itemView.translationY = holder.itemView.height / 3f
}
pendingAdds.add(holder)
return true
}

override fun animateMove(
holder: RecyclerView.ViewHolder?,
fromViewX: Int,
fromViewY: Int,
toViewX: Int,
toViewY: Int
): Boolean {
holder ?: return false
val view = holder.itemView
val fromX = fromViewX + holder.itemView.translationX.toInt()
val fromY = fromViewY + holder.itemView.translationY.toInt()
endAnimation(holder)
val deltaX = toViewX - fromX
val deltaY = toViewY - fromY
if (deltaX == 0 && deltaY == 0) {
dispatchMoveFinished(holder)
return false
}
if (deltaX != 0) {
view.translationX = (-deltaX).toFloat()
}
if (deltaY != 0) {
view.translationY = (-deltaY).toFloat()
}
pendingMoves.add(holder)
return true
}

override fun runPendingAnimations() {
super.runPendingAnimations()
if (pendingAdds.isNotEmpty()) {
for (i in pendingAdds.indices.reversed()) {
addItem(pendingAdds.removeAt(i))
}
}

if (pendingMoves.isNotEmpty()) {
for (i in pendingMoves.indices.reversed()) {
moveItem(pendingMoves.removeAt(i))
}
}
}

override fun endAnimation(holder: RecyclerView.ViewHolder) {
if (pendingAdds.contains(holder)) endPendingAdd(holder)
if (runningAdds.contains(holder)) endRunningAdd(holder)
if (pendingMoves.contains(holder)) endPendingMove(holder)
if (runningMoves.contains(holder)) endRunningMove(holder)
super.endAnimation(holder)
}

override fun endAnimations() {
pendingAdds.forEach(::endPendingAdd)
runningAdds.forEach(::endRunningAdd)
pendingMoves.forEach(::endPendingMove)
runningMoves.forEach(::endRunningMove)
super.endAnimations()
}

override fun isRunning() =
pendingAdds.isNotEmpty() ||
runningAdds.isNotEmpty() ||
pendingMoves.isNotEmpty() ||
runningMoves.isNotEmpty() ||
super.isRunning()

private fun addItem(holder: RecyclerView.ViewHolder) {
val springAlpha = holder.itemView.spring(ALPHA)
val springTranslationX = holder.itemView.spring(TRANSLATION_X)
val springTranslationY = holder.itemView.spring(TRANSLATION_Y)
listenForAllSpringsEnd({ cancelled ->
if (cancelled) {
clearAnimatedValues(holder.itemView)
}
dispatchAddFinished(holder)
dispatchFinishedWhenDone()
runningAdds -= holder
}, springAlpha, springTranslationX, springTranslationY)
springAlpha.animateToFinalPosition(1f)
springTranslationX.animateToFinalPosition(0f)
springTranslationY.animateToFinalPosition(0f)
dispatchAddStarting(holder)
runningAdds += holder
}

private fun moveItem(holder: RecyclerView.ViewHolder) {
val springX = holder.itemView.spring(TRANSLATION_X)
val springY = holder.itemView.spring(TRANSLATION_Y)
listenForAllSpringsEnd({ cancelled ->
if (cancelled) {
clearAnimatedValues(holder.itemView)
}
dispatchMoveFinished(holder)
dispatchFinishedWhenDone()
runningMoves -= holder
}, springX, springY)
springX.animateToFinalPosition(0f)
springY.animateToFinalPosition(0f)
dispatchMoveStarting(holder)
runningMoves += holder
}

private fun endPendingAdd(holder: RecyclerView.ViewHolder) {
clearAnimatedValues(holder.itemView)
dispatchAddFinished(holder)
pendingAdds -= holder
}

private fun endRunningAdd(holder: RecyclerView.ViewHolder) {
holder.itemView.spring(ALPHA).cancel()
holder.itemView.spring(TRANSLATION_X).cancel()
holder.itemView.spring(TRANSLATION_Y).cancel()
runningAdds -= holder
}

private fun endPendingMove(holder: RecyclerView.ViewHolder) {
clearAnimatedValues(holder.itemView)
dispatchMoveFinished(holder)
pendingMoves -= holder
}

private fun endRunningMove(holder: RecyclerView.ViewHolder) {
holder.itemView.spring(TRANSLATION_X).cancel()
holder.itemView.spring(TRANSLATION_Y).cancel()
runningMoves -= holder
}

private fun dispatchFinishedWhenDone() {
if (!isRunning) {
dispatchAnimationsFinished()
}
}

private fun clearAnimatedValues(view: View) {
view.alpha = 1f
view.translationX = 0f
view.translationY = 0f
}
}
Loading