android – “scrapped或附加视图可能无法回收”,因为支持lib 25.0.0

前端之家收集整理的这篇文章主要介绍了android – “scrapped或附加视图可能无法回收”,因为支持lib 25.0.0前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我快速滚动列表时,所有的recyclerviews有时会崩溃,因为我已更新为支持lib 25.0.0.没有布局动画师,一切正常,支持lib< 25. 在RecyclerView中抛出异常,因为holder.itemView.getparent()不为null
if (holder.isScrap() || holder.itemView.getParent() != null) {
            throw new IllegalArgumentException(
                    "Scrapped or attached views may not be recycled. isScrap:"
                            + holder.isScrap() + " isAttached:"
                            + (holder.itemView.getParent() != null));
        }

有没有其他人经历过这种行为?

解决方法

要防止此问题崩溃,您需要从适配器调用setHasStableIds(boolean)并将参数传递为true:
adapter.setHasStableIds(true);

说明:
调用adapter.notifyDataSetChanged()时会发生此问题;

然后recyclerView调用detachAndScrapAttachedViews(recycleler);它暂时分离并废弃所有当前附加的子视图.视图将被废弃到给定的Recycler中. Recycler可能更喜欢重复使用废料视图.

然后scrapOrRecycleView(recycler,(int)position,(View)child);叫做.此函数检查“hasStableIds”是true还是false.如果为false,则会出现以下错误

“Scrapped or attached views may not be recycled.”

稳定的ID允许View(RecyclerView,ListView等)针对notifyDataSetChanged调用之间的项目保持不变的情况进行优化.
hasStableIds()== true表示项目ID在对基础数据的更改中是否稳定.

如果项id是稳定的,那么它可以被视图重用,即“循环”,使得在notifyDataSetChanged()调用之后重新渲染的过程有效.如果项目ID不稳定,则无法保证该项目已被回收,因为无法跟踪它们.

注意:将setHasStableIds()设置为true不是请求稳定ID的方法,而是告诉Recycler / List / Grid Views您提供所述稳定性.

原文链接:https://www.f2er.com/android/310212.html

猜你在找的Android相关文章