I am facing issue while enabling full scroll in drag/drop gesture of recycler view item. Here, I have a bit complicated layout, I have attached one image for easy understanding. Where,
A = RV 1 having drag, drop and swipe gestures, Horizontal layoutManager
B = RV 2 having swipe gesture, Horizontal layoutManager
- C = RV 3 having swipe gesture, Horizontal layoutManager
- D = RV 4 having grid layoutManager
- E = Frame Layout / container having 2 RV - only one will be visible at a time based on some logic
- F = Nested Scroll View
Here, When I am selecting an item from RV1 (A)
, It should scroll through all items of RV1 (A)
But currently, It is getting scroll only into visible space of RV1. How can I make it work as expected?
Encountered Problem: It is happening because of NestedScrollView
. It eats up a scroll event when RV1 (A) item is dragged
. If I remove NestedScrollView, It can provide expected output. However, I can not remove it for sure!
Please Note: I can not change the layout and make it all fit into a single recycler view.