Android RecycleVieW加载数据时,View闪烁
程序员文章站
2022-04-10 19:41:09
在项目中遇到一个问题,用RecycleView+databing组合加载或者刷新数据的时候,View总是会闪烁一下。查询了很多文档,有的写的是关闭动画,用如下代码:recyclerView.getItemAnimator().setAddDuration(0); recyclerView.getItemAnimator().setChangeDuration(0); recyclerView.getItemAnimator().setMoveDuration(0);...
在项目中遇到一个问题,用RecycleView+databing组合加载或者刷新数据的时候,View总是会闪烁一下。
查询了很多文档,有的写的是关闭动画,用如下代码:
recyclerView.getItemAnimator().setAddDuration(0);
recyclerView.getItemAnimator().setChangeDuration(0);
recyclerView.getItemAnimator().setMoveDuration(0);
recyclerView.getItemAnimator().setRemoveDuration(0);
((SimpleItemAnimator)recyclerView.getItemAnimator()).setSupportsChangeAnimations(false);
但是我用了没有效果,该闪烁依旧闪烁,当刷新的时候View是会复用的,闪烁时,后面的元素复用了前面元素的ViewHolder。
找到一篇博文,提供了一个解决方法
@Override
public void onBindViewHolder(TestDBViewHolder holder, int position) {
holder.binding.setData(list.get(position));
holder.binding.executePendingBindings();//加一行,问题解决
}
加了一行代码解决了ViewHolder复用闪烁的问题,但是executePendingBindings()这个方法从未用过,跟下去源码中的注释如下
/**
* Evaluates the pending bindings, updating any Views that have expressions bound to
* modified variables. This <b>must</b> be run on the UI thread.
*/
public void executePendingBindings() {
if (mContainingBinding == null) {
executeBindingsInternal();
} else {
mContainingBinding.executePendingBindings();
}
}
我的理解是,这个方法是的意思是当数据还没有被绑定加载的时候,executePendingBindings,它使数据绑定刷新所有挂起的更改。否则,它将视为另一个布局失效了。
本文地址:https://blog.csdn.net/dzy_mails/article/details/109261690
上一篇: 金华小吃有哪些?