我检查了这个thread,我在RecyclerView中实现了它。但我遇到了问题,动画正在运行,但RecyclerView中的所有项目(叹息或隐藏)同时加载动画。
当用户滚动时,我想在每个项目出现在屏幕底部时加载动画。
我修改逻辑只从底部加载。
Animation animation = AnimationUtils.loadAnimation(context, R.anim.up_from_bottom);
animation.setDuration(1000);
holder.itemView.startAnimation(animation);
我该如何解决这个问题?