lisawray/groupie

Is it possible to make ui like Instagram Discover

arifinreinaldo opened this issue · 2 comments

Hi, Thank you for your great library to help develop with Recyclerview.

I just want to ask if it is possible to create layout like instagram discover with this library? with rowspan and colspan
Any suggestion what to look for also welcomed. Thank you very much
image

This is theoretically out of scope for Groupie, as Groupie manages the items in the adapter, and this is a LayoutManager responsibility.

GridLayoutManager alone does not let you have an image that takes up multiple rows, so you might need something like https://github.com/google/flexbox-layout#flexboxlayoutmanager-within-recyclerview .

Then, you can use that with Groupie.

Thank you for the swift response, will check the reference.