How to delegate scroll of RecycleView to ScrollView

Viewed 52

I have a RecyclerView inside ScrollView. I want RecyclerView to start scrolling itself only after it reached a top of the screen, and while it isn't it should scroll his parent ScrollView. How to achieve this behavior?

1 Answers

use widget nestedscrollview or recyclerview scroll display and scrollview enable

recyclerView.setNestedScrollingEnabled(false);
Related