Search code examples
androidandroid-layoutandroid-recyclerviewgridlayoutmanager

GridLayoutManager in both orientations at once


Is it possible to override GridLayoutManager to be able to use it in both directions (vertical and horizontal) at once? (User can scroll horizontally and vertically at the same time)


Solution

  • No.

    But you can implement a custom LayoutManager yourself. And you're in a bit of luck because this tutorial (you will need to follow all three steps) basically creates exactly what you need.