美文网首页
RecyclerView 单条目刷新notifyItem 去除闪

RecyclerView 单条目刷新notifyItem 去除闪

作者: AndroidDMW | 来源:发表于2021-11-04 22:16 被阅读0次

1.不使用动画

((SimpleItemAnimator)recyclerView.getItemAnimator()).setSupportsChangeAnimations(false);

2.动画播放时间置为0

recyclerView.getItemAnimator().setChangeDuration(0);

3.将DefaultItemAnimator类里的代码全部copy到自己写的动画类中,然后做一些修改(方案太重不推荐)

相关文章

网友评论

      本文标题:RecyclerView 单条目刷新notifyItem 去除闪

      本文链接:https://www.haomeiwen.com/subject/veqlzltx.html