I\'m using RecyclerView as the base for my data list.
i\'ve implemented custom RecyclerView.Adapter which is based on ArraList. on fetching data from the internet the code t
public void addItems(List items){
final int positionStart = data.size() + 1;
data.addAll(items);
notifyItemRangeInserted(positionStart, items.size());
}