美文网首页
2018-03-01 耗耐心的解决

2018-03-01 耗耐心的解决

作者: Pengoing | 来源:发表于2018-03-01 16:09 被阅读0次

    20180301_W4

    。。。 | 复现

    ava.lang.IndexOutOfBoundsException

    Inconsistency detected. Invalid view holder adapter positionViewHolder

    validateViewHolderForOffsetPosition

    —— 第一轮

    代码结构

    1. 有没有可能是网络操作慢,一张照片,一张照片添加集合,然后在 updataset 晚了

    2. 通过预先定义一部分数据,然后 debug 模式慢慢加,会不会崩溃​

    3. adapterUpload.remove(photoEntity.getIndex()); 上传错误,​

    4. 数组超索引,应该主要是数据删除引起的 | ​ 删除的写法没有问题

    5. 多个线程同时上传失败,删除图片​

    6. 网络堵塞下尝试操作​

    初始化控件,赋值,点击事件

    初始化控件

    赋值

    赋值 lst view data

    请求网络 | lst view data

    请求网络后

    点击事件

    拍录 或 看视频

    拍完照片,看完后上传网络

    网络上传后

    3 篇 Stack Overflow 文章

    i once got the error too:

    I had a same issue previously. Finally found a workaround for that

    this problem may happen

    ​​In my case I was trying to change my adapter contents on a background thread

    Just remove all views of your layout Manager before notify​

    In my case, I was updating the items and calling notifyDataSetChanged in a non-UI thread

    ​It also can be related with setting the adapter multiple times at the same time.

    Use notifyDataSetChanged()instead

    ​I had a similar problem but not exactly the same

    In my case (delete/insert data in my data structure) I needed to clear recycle pool and then notify data set changed!————mRecyclerView.getRecycledViewPool().clear();————mAdapter.notifyDataSetChanged();​

    —— 第二轮(生命周期推断操作? | recyclerview 方法 | 百度谷歌查找)

    百度谷歌查找 10

    此问题是由RecyclerView不同线程中修改的数据引起的。最好的方法是检查所有数据访问。解决方法正在打包LinearLayoutManager。

    所以建议你,如果不是必须要用这个控件的话,就换成 listview/gridview 吧,毕竟是已经很成熟的控件,出问题的概率小很多。

    如果必须要用到的话,建议你尽量减少 notifyxxx()这个方法的使用。如果不得不用,那么必须保证是在主线程中进行调用。

    来进行排查,发现了问题所在:从服务器获取到删除图片成功的返回值后,先进行了 data 的清除,然后在主线程里面又结合 notifyItemRemoved 重新删除了一次!

    我也报了同样的错,解决方法:集合数据一旦发生改变,立马得调用 notifyDataSetChanged();,我就是因为再调用 list.clear(), 方法后没有及时调用 notifyDataSetChanged() 方法,导致的,现在已经解决,希望能给犯同样错误的小伙伴带来帮助

    回复 RxWorld:我去,还真的是这样子,我把 datalist 放在子线程进行计算修改,然后切换到 主线程去 notify,结果就异常。没有立马 notify 引出的异常。目前用楼主的 方法 catch 住了。搞了我一条。

    博主的方法可能有效,但我试了,还是不行。然后看了别的文章,懂了一个道理,list 的数据,要和 adpater 数据同步,例如,list.clear(), 执行后,要立即调用 notifyDataSetChanged(),而不是等到网络请求完后,在调用 notifyDataSetChanged()。意思是每当 list 集合改变时,就立马调用通知。这样就没报错了。希望对你们有帮助。

    回复天耀 106:是不是可以理解为: 刷新数据是先 adapter 中的 list 清空并 notifyDataSetChanged, 而不是等 list 赋新值后 notifyDataSetChanged

    回复天耀 106:有个问题啊 如果在 list.clear 后就直接调用适配器刷新 会白屏一下,这样体验是不是很不好。看别的 app 如小红书之类的就没有白屏 是有其他解决方法么

    生命周期推断操作

    finish 调用 onDestroy

    相关文章

      网友评论

          本文标题:2018-03-01 耗耐心的解决

          本文链接:https://www.haomeiwen.com/subject/iyzgxftx.html