I need to make an infinite scroll. In the examples with the listview , I have an adapter.notifyDataSetChanged(); . But here in the RecyclerAdapter for some reason does not want.
Help me please.
cardview.addOnScrollListener(new EndlessRecyclerViewScrollListener((LinearLayoutManager) mLayoutManager) { @Override public void onLoadMore(int page, int totalItemsCount) { new GetListData().execute(); mAdapter.notifyDataSetChanged(); } });