gpt4 book ai didi

Android,ListView IllegalStateException : "The content of the adapter has changed but ListView did not receive a notification"

转载 作者:IT老高 更新时间:2023-10-28 12:53:41 31 4
gpt4 key购买 nike

我想做的事:运行一个后台线程,计算 ListView 内容并部分更新 ListView,同时计算结果。

我知道我必须避免的事情:我不能弄乱后台线程中的 ListAdapter 内容,所以我继承了 AsyncTask 并从 onProgressUpdate 发布结果(向适配器添加条目)。我的适配器使用结果对象的 ArrayList,对这些 arraylist 的所有操作都是同步的。

其他人的研究:有非常有值(value)的数据here .我几乎每天都会遇到大约 500 名用户的崩溃,当我在 onProgressUpdate 中添加 list.setVisibility(GONE)/trackList.setVisibility(VISIBLE) block 时,崩溃降低了 10 倍,但没有消失。 (建议在answer中)

我有时会得到什么:请注意,这种情况很少发生(每周一次,对于 3.5k 用户之一)。但我想完全摆脱这个错误。这是部分堆栈跟踪:

`java.lang.IllegalStateException:` The content of the adapter has changed but ListView  did not receive a notification. Make sure the content of your adapter is not modified from a background thread, but only from the UI thread. [in ListView(2131296334, class android.widget.ListView) with Adapter(class com.transportoid.Tracks.TrackListAdapter)]
at android.widget.ListView.layoutChildren(ListView.java:1432)
at android.widget.AbsListView.onTouchEvent(AbsListView.java:2062)
at android.widget.ListView.onTouchEvent(ListView.java:3234)
at android.view.View.dispatchTouchEvent(View.java:3709)
at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:852)
at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
[...]

帮助?不再需要,见下文

最终答案:事实证明,我每 5 次插入调用一次 notifyDataSetChanged 以避免闪烁和突然的列表更改。不能这样做,当基本列表发生变化时总是通知适配器。这个错误现在对我来说早已消失了。

最佳答案

我遇到了同样的问题。

我在 UI 线程之外向我的 ArrayList 添加项目。

解决方案:我都做了,添加项目并在UI线程中调用notifyDataSetChanged()

关于Android,ListView IllegalStateException : "The content of the adapter has changed but ListView did not receive a notification",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3132021/

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