来自Observer的具有可变列表的ConcurrentModificationException



Grettings,有人能帮我吗?我已经实现了一个辅助列表来添加来自观察者的元素,但问题仍然存在,ConcurrentModificationException发生在addAll行。

在一个Fragment类中,我有一个来自项目经理的观察者,该经理提供了一个将显示在数组列表上的元素列表

manager.getMutableList()
.observe(viewLifecycleOwner, Observer { mutableList ->
val auxList = mutableListOf<CustomClass>().apply {
addAll(mutableList)
}
if (auxList.isNotEmpty()) {
...
} else {
...
}
(recyclerView.adapter as RecyclerAdapter).run {
items = auxList
notifyDataSetChanged()
...
}
})

这是堆栈跟踪

java.util.ArrayList$SubList.size (ArrayList.java:1057)
java.util.ArrayList.addAll (ArrayList.java:588)
com.project.project.Fragment$setObservers$6.onChanged (Fragment.java:330)
com.project.project.Fragment$setObservers$6.onChanged (Fragment.java:74)
androidx.lifecycle.LiveData.considerNotify (LiveData.java:131)
com.android.internal.os.ZygoteInit.main (ZygoteInit.java:1101)

任何帮助都将不胜感激!

问题是从主线程以外的线程修改mutableList。避免这些异常的最好方法是使列表不可变(因此只使用List而不是MutableList(。

所有想要修改的代码都需要自己复制:

val copy = list.toMutableList()
copy.add(...)

相关内容

  • 没有找到相关文章

最新更新