RecyclerView的进场动画、点击动画
本文链接:https://blog.csdn.net/cpcpcp123/article/details/84567010 下面图片即为本次的运行效果: 1.进场动画是在viewholder中的onViewAttachedToWindow()中添加动画即可,动画的代码: private ScaleInAnimation mSelectAnimation = new ScaleInAnimation(); @Override public void onViewAttachedToWindow(DiffVH holder) { super.onViewAttachedToWindow(holder); addAnimation(holder); } private void addAnimation(DiffVH holder) { for (Animator anim : mSelectAnimation.getAnimators(holder.itemView)) { anim.setDuration(300).start(); anim.setInterpolator(new LinearInterpolator()); } } ScaleInAnimation.java: import android.animation.Animator; import android