你的位置:首页 > 软件开发 > 操作系统 > Android报错:The content of the adapter has changed...与Channel is unrecoverably broken and will be disposed的分析与解决办法

Android报错:The content of the adapter has changed...与Channel is unrecoverably broken and will be disposed的分析与解决办法

发布时间:2015-08-28 14:00:08
在Android中adapter错误:The content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter ...

在Android中adapter错误:

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。

分析:

这个错误通常是listview等控件在使用adapter适配数据时可能传入的是一个静态的list,而在adapter中直接使用=号来赋值,当外部这list被改变(如多线程操作了这个list)后没有及时的调用adapter的notifyDataSetChanged,导致下次来更新的时候报错。

解决:

在adapter中不要直接用=号来赋值,使用如下两种方法重新分配内存:

1:list.clear ,list.addall。

2:arraylist.clone。

------------------------------------------------------------------------

Android错误:Channel is unrecoverably broken and will be disposed!  

分析:

在使用某些方法时传入的参数有问题或格式错误。如:Integer.parseInt("")

解决:

找到导致问题的地方,先做判断再传值。


 

海外公司注册、海外银行开户、跨境平台代入驻、VAT、EPR等知识和在线办理:https://www.xlkjsw.com

原标题:Android报错:The content of the adapter has changed...与Channel is unrecoverably broken and will be disposed的分析与解决办法

关键词:Android

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

可能感兴趣文章

我的浏览记录