I\'m implementing an endless data loading for a RecyclerView. When software detects that last item is going to be shown, it downloads new items and call to the loadMor
loadMor
I solved this with added method in RVAdapter that call notifyDataSetChanged().
Simply in RVAdapter:
public void refreshList(){ notifyDataSetChanged(); }
and call this method in MainActivity when need:
rVAdapter.refreshList();