I've a layout in which Root view is CoordinatorLayout and there is a TabLayout and a ViewPager. And there are multiple fragments are initialized in viewpager using FragmentStatePagerAdapter. Some fragments are using ListView and some are using RecyclerView. But view with ListView are not scrolling properly while the view with RecyclerView are working fine. And if I'm using:
ViewCompat.setNestedScrollingEnabled(listView, true);
It only works with api level 21 or higher. Can anyone help me here. Thanks in Advance.