前端之家收集整理的这篇文章主要介绍了
android – 如何在列表视图中添加更多项而不刷新上一项,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个listview,其中我在固定间隔后
添加一些数据.但我不想再次设置适配器,因为它将刷新完整列表.是否有任何
方法添加项目而不刷新完整列表.
提前致谢.
您可能希望使用以下(在RecycleView而不是ListView中):
notifyItemInserted(0);//NOT notifyDataChanged()
recyclerViewSource.scrollToPosition(0);
//Scroll up,to use this you'll need an instance of the adapter's RecycleView
原文链接:https://www.f2er.com/android/314099.html