The content of the adapter has changed but ListView did not receive a notification終極解決方案

來源:互聯網
上載者:User

這幾天做一個自動掃描SD卡上所有APK檔案的小工具,掃描過程中會把APK添加到LISTVIEW中顯示,結果出現以下錯誤:(有時候觸摸更新資料時候,觸摸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)]

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本來就是線程不安全的,這個不關心了,看了國外一個開發人員的方法很簡單:

ListView.requestLayout();Adatper.notifyDataSetChanged();

在你adpater更新前,調用listview的requestLayout(),這樣做無非就是擬補資料數量不一致導致報錯,雖然一個解決的好辦法。

但是實際上用的時候我發現也會出問題,想了想最徹底的解決辦法:

把  listview的adapter資料更新和dapter.notifyDataSetChanged()必須同時放到單獨一個線程裡,報錯基本是都是這個原因,有人把adapter裡的資料更新了,但是
dapter.notifyDataSetChanged()     放到一個單獨線程去更新,結果出現notifyDataSetChanged更新同步的問題

題外話:解決問題還是從本質上思考,從錯誤資訊上提示,一定避免多線程去更新adapter的資料,為此我把多線程遞迴遍曆SD卡目錄修改成了單線程;

有的時候看到別人的一些補救方法未真正解決問題。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.