美文网首页
recycleview移除item注意点

recycleview移除item注意点

作者: SJY沙沙沙 | 来源:发表于2017-11-27 16:56 被阅读0次

我们在使用recycleview移除某一项item时,为了显示动画效果,一般这样写

list.remove(position);

notifyItemRemoved(position);

notifyItemRangeChanged(0,adaptercase.getItemCount());

这样写可以避免数组越界的问题,但是当用户快速点击时,连续点击同一个item进行删除还是会数组越界

可以这么处理

if(list.size()>position){

     list.remove(position);

     notifyItemRemoved(position);

     notifyItemRangeChanged(0,adaptercase.getItemCount());

}

相关文章

网友评论

      本文标题:recycleview移除item注意点

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