package com.study.food.animator; import android.animation.Animator; import android.animation.ObjectAnimator; import android.view.View; import android.view.animation.DecelerateInterpolator; import com.chad.library.adapter.base.animation.BaseAnimation; import org.jetbrains.annotations.NotNull; public class MyAnimation implements BaseAnimation { @NotNull @Override public Animator[] animators(@NotNull View view) { Animator scaleY = ObjectAnimator.ofFloat(view, "scaleY", 1.3f, 1); Animator scaleX = ObjectAnimator.ofFloat(view, "scaleX", 1.3f, 1); Animator alpha = ObjectAnimator.ofFloat(view, "alpha", 0, 1f); scaleY.setDuration(350); scaleX.setDuration(350); alpha.setDuration(350); scaleY.setInterpolator(new DecelerateInterpolator()); scaleX.setInterpolator(new DecelerateInterpolator()); return new Animator[]{scaleY, scaleX, alpha}; } }
时间: 2023-12-06 12:41:13 浏览: 352
这是一个使用 Android 动画库实现的自定义动画类 MyAnimation,实现了 BaseAnimation 接口,可以用于 RecyclerView 等列表控件的 item 动画效果。
在 animators 方法中,通过 ObjectAnimator 类创建了三个动画,分别对应了 view 的 scaleY、scaleX 和 alpha 属性,使得在动画执行过程中,view 会像弹簧一样先变大再变回原大小,并且从完全透明到完全不透明。
其中,setDuration 方法设置了动画的持续时间为 350 毫秒,setInterpolator 方法设置了动画的插值器为 DecelerateInterpolator,即先快后慢的减速效果。最后将三个动画打包成数组返回即可。
阅读全文