我有使用ArrayList< ModelClass>
作为dataSet的recyclerView:
ArrayList<ModelClass> dataSet = new ArrayList<>();
@Override
public int getItemCount() {
return dataSet.size();
}
现在,当用户向下滚动新项目时,将添加到dataSet,并且此插入可以无限时间发生 我的问题是:
caching techniques
看似合乎逻辑吗?