gpt4 book ai didi

Android ConcurrentModification onDraw()

转载 作者:行者123 更新时间:2023-11-29 01:59:27 26 4
gpt4 key购买 nike

我在使用 Android 应用程序时遇到问题。

我有一个线程不断迭代列表或形状,更新它们的位置,有时还会从列表中删除一个项目。在线程的 while 循环结束时,它调用 postInvalidate() 以提示重新绘制。

这是对 ArrayList 进行修改的代码。

Iterator<Shape> iterator = this.myList.iterator();
while (iterator.hasNext()) {
Shape nextShape = iterator.next();
nextShape.move();
if(condition) {
iterator.remove()
}
}

onDraw 方法使用 for each 循环来绘制每个项目。尽管只通过迭代器修改列表,但我在 onDraw 方法中得到并发修改。我试过 CopyOnWriteArrayList 和 Collections.synchronized,结果相同。

如有任何帮助,我们将不胜感激。

最佳答案

有几种方法可以解决这个问题。一种是在线程和 onDraw 中使用同步块(synchronized block),但这会阻止第二个线程与 UI 线程同时运行。

我认为最好的方法是使用两个集合。你的代码应该是这样的

onDraw(){
synchronized(myList){
//Do your draw code. Get the iterator inside this block
}
}

threadFunction(){
List threadList;
while(1){
//Update threadList, which holds all the objects
synchronized(myList){
myList = threadList.copy(); //Do a deep copy, don't just copy over the reference
}
postInvalidate();
}
}

这将使您的绘制函数对迭代结束时制作的列表副本进行操作。如果您正在处理深拷贝,您将不会遇到任何同步问题,因为线程不会更改相同的列表。同步块(synchronized block)将阻止线程在绘制期间覆盖绘制函数的副本。唯一剩下的问题是线程中列表的覆盖将挂起,直到绘制完成,但由于更新频率比屏幕上无论如何都不会显示,我猜这是可以接受的。

关于Android ConcurrentModification onDraw(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13391077/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com