我给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成功实现了
RecyclerView相对于ListView的改进之一就是支持局部刷新,包含插入,删除或更新
或许是调用的方法有问题,贴代码出来看看