android - RecyclerView怎么局部删除一批数据?
迷茫
迷茫 2017-04-17 17:49:06
0
1
521

我给RecyclerView添加了一个头部,如果使用notifyDataSetChanged会照成头部的刷新,所以我想局部删除一些数据,但是调用notifyItemRangeRemoved方法无效,

if (videoSetting.getVideoPictures() != null && videoSetting.getVideoPictures().size() > 0) {
                cameraPhotoList.clear();
                cameraPhotoList.addAll(videoSetting.getVideoPictures());
                mAdapter.notifyItemRangeChanged(1,cameraPhotoList.size());
            } else {
                int count = cameraPhotoList.size();
                cameraPhotoList.clear();
                mAdapter.notifyItemRangeRemoved(1,count);
                mAdapter.notifyItemRangeRemoved(1,count);
            }

在获取到数据的时候更新数据,数据为空的话清空数据,不知道为什么,我调用两次notifyItemRangeRemoved成功实现了

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

Antworte allen(1)
小葫芦

RecyclerView相对于ListView的改进之一就是支持局部刷新,包含插入,删除或更新

或许是调用的方法有问题,贴代码出来看看

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage