aboutsummaryrefslogtreecommitdiff
path: root/library/src/main/kotlin/ca/allanwang/kau/animators/SlideUpAlphaAnimator.kt
blob: 3b1b223d7bc33e9d0ed3aebd049c092bc7f83530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package ca.allanwang.kau.animators

import android.support.v7.widget.RecyclerView
import android.view.ViewPropertyAnimator

/**
 * Created by Allan Wang on 2017-06-27.
 */
class SlideUpAlphaAnimator : DefaultAnimator() {
    override fun addAnimationPrepare(holder: RecyclerView.ViewHolder) {
        with(holder.itemView) {
            translationY = height.toFloat()
            alpha = 0f
        }
    }

    override fun addAnimation(holder: RecyclerView.ViewHolder): ViewPropertyAnimator {
        return holder.itemView.animate().apply {
            translationY(0f)
            alpha(0f)
            duration = this@SlideUpAlphaAnimator.addDuration
            interpolator = this@SlideUpAlphaAnimator.interpolator
        }
    }

    public override fun addAnimationCleanup(holder: RecyclerView.ViewHolder) {
        with(holder.itemView) {
            translationY = 0f
            alpha = 1f
        }
    }

    override fun getAddDelay(remove: Long, move: Long, change: Long): Long = 0

    override fun getRemoveDelay(remove: Long, move: Long, change: Long): Long = 0

    override fun removeAnimation(holder: RecyclerView.ViewHolder): ViewPropertyAnimator {
        return holder.itemView.animate().apply {
            duration = this@SlideUpAlphaAnimator.removeDuration
            alpha(0f)
            translationY(holder.itemView.height.toFloat())
            interpolator = this@SlideUpAlphaAnimator.interpolator
        }
    }

    override fun removeAnimationCleanup(holder: RecyclerView.ViewHolder) {
        with(holder.itemView) {
            translationY = 0f
            alpha = 1f
        }
    }
}