Android RecyclerView顶部0位置添加数据后刷新位置不变,如聊天历史记录

如聊天记录界面,往上加载更多数据时,头部插入更多数据

mList.addAll(0, pList);

之后刷新界面,需位置不变,继续往上滑

使用notifyItemRangeInserted 替代notifyDataSetChanged

//                mAdapter.notifyDataSetChanged();
//                 mAdapter.notifyItemInserted(0);
                 mAdapter.notifyItemRangeInserted(0,pList.size());

猜你喜欢

转载自blog.csdn.net/zgf1991/article/details/105212168