Step 1- Defined here some necessary variable
- boolean isLoading=false; -> this variable will use to show progressbar below to recyclerview in your xml file when you scroll your recyclerview list .
- int mPageSize=10; -> Number of items you want to fetch from server in a once.
Step-2 Set addOnScrollListener to recyclerview
- int mTotalItemsCount -> Total item on server side.
- recyclerView.addOnScrollListener(new RecyclerView.OnScrollListener() {
- @Override