I\'m trying to implement a layout which contains RecyclerView and ScrollView at the same layout.
Layout template:
use NestedScrollView instead of ScrollView
NestedScrollView
ScrollView
Please go through NestedScrollView reference document for more information.
and add recyclerView.setNestedScrollingEnabled(false); to your RecyclerView
recyclerView.setNestedScrollingEnabled(false);
RecyclerView