nested scrollview with recyclerview in android code example
Example 1: make recycler view non scrollable
//Override your LayoutManager's canScrollVertically::boolean
linearLayoutManager = new LinearLayoutManager(context) {
@Override
public boolean canScrollVertically() {
return false;
}
};
Example 2: android nested scroll view
androidx.core.widget.NestedScrollView