How to build this layout using GridView?

I would like to build a layout as shown below using a GridView , although I know that this can be done using GridLayout and ScrollView , but I need to use an adapter because I do partly lazy loading and scalling for the image.

enter image description here

Any help or advice would be greatly appreciated.

+4
source share
1 answer

I think you are looking for a StaggeredGridView :

StaggeredGridView allows the user to create a GridView with unequal rows, similar to how Pinterest looks. Includes own OnItemClickListener and OnItemLongClickListener, selector and fixed position recovery

http://www.androidviews.net/2013/01/pinterest-like-adapterview/

0
source

Source: https://habr.com/ru/post/1485266/


All Articles