使用ListView時遇到如下的異常信息:
10-26 18:30:45.085: E/AndroidRuntime(7323): 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(2131296280, class android.widget.ListView) with Adapter(class com.souapp.appmanager.ApkListAdapter)]
其實我在listview的adapter添加完數據后,使用了handler去調用datper.notifyDataSetChanged();來通知listview顯示變化結果;
雖然自己很確定沒有多線程操作,但是有人說listview本來就是線程不安全的,這個不關心了,看了國外一個開發者的方法很簡單。
解決方法1:
ListView.requestLayout();
Adatper.notifyDataSetChanged();
在你adpater更新前,調用listview的requestLayout(),這樣做無非就是彌補數據數量不一致導致報錯,雖然一個解決的好辦法。
但是實際上用的時候我發現也會出問題,想了想最徹底的解決辦法
徹底解決方法:
把 listview的adapter數據更新和dapter.notifyDataSetChanged()方法的調用必須同時放到單獨一個線程里,報錯基本是都是這個原因,有人把adapter里的數據更新了,但是 dapter.notifyDataSetChanged() 放到一個單獨線程去更新,結果出現notifyDataSetChanged更新同步的問題
以上內容來自:http://blog.csdn.net/changemyself/article/details/8116670
解決更新ListView數據時出現的問題分析總結:
這個問題也不是必崩潰,低版本崩的多,高版本好像崩潰得少