I am using CoordinatorLayout in my activity page. In that there is ListView below the app bar. But its not working when I use ListView
CoordinatorLayout
ListView
Below code worked for me:
ViewCompat.setNestedScrollingEnabled(listView, true);
Your ListView should be inside NestedScrollView
NestedScrollView