I have made a view with horizontal RecyclerView
in CoordinatorLayout
such that the parent of RecyclerView
is appbar_scrolling_view_behavior
. Everything works perfect except when we try scrolling vertically on the recyclerView
. Is there a way we can scroll vertically while scrolling on Y axis and horizontally on X axis.
EDIT
There are two RecyclerView
in fragment which is ultimately used in CoordinatorLayout
. Now first recyclerView
is horizontal and second is vertical. When I scroll horizontally on first RecyclerView
it works perfectly and when I scroll vertically on second RecyclerView
it works perfect. Now the problem is when I try to scroll vertically over first RecyclerView
parent scroll should work.
Thanks.