Recyclerview onscrolllistener not working when setNestedScrollingEnabled to false
I want to implement pagination with recyclerView , for this I add addOnScrollListener to the recyclerView but I am having trouble with RecyclerView.OnScrollListener not working when I set rvGridExplore.setNestedScrollingEnabled(false); But when I remove rvGridExplore.setNestedScrollingEnabled(false); it is working fine, I don't know how to handle this. Here is code: rvGridExplore = (RecyclerView) view.findViewById(R.id.rvGridExplore); final GridLayoutManager glm = new GridLayoutManager(context,2); // rvGridExplore.setNestedScrollingEnabled(false); rvGridExplore.setLayoutManager(glm); // final