Android RecyclerView CardView StaggedGridLayoutManager: independent column scrolling

I have a "regular" implementation of StaggedGridLayoutManager . Is it possible to achieve independent column scrolling? For example, does the user touch and scroll the right column so that other columns do not move?

And even further: when scrolling the right column, other columns will also scroll synchronously, but slower? (This is similar to what was in the Expedia application once).

Thanks,

+7
android android-recyclerview android-cardview
source share
1 answer

Is there any reason why you are not just doing multiple recyclers with your data spreading over them? You can use OnScrollListener or a custom implementation to get the parallax that you described.

-one
source share

All Articles