I want to scroll multiple recyclerview at a time how to achieve that
I want to scroll multiple RecyclerView at a time how to achieve that Exp- I have 3 RecyclerView in horizontal and when i scroll 1st RecyclerView then second and third shoul also scroll how to do that ? The answer is very simple, you have to get scroll feedback from one recycleview and pass it to other recycleviews. But very carefully. you need to keep referance of which recyclerview starts giving scroll feedback, so that it won't enter into continious loop. so create a global variable private int draggingView = -1; Add scrollListener to all your recyclerviews mRecyclerView1.addOnScrollListener