Hello!
I have some design requirements, which force me to implement a layout as attached. It looks like a gridview, but the items are not uniform, but have different sizes.
Actually I implemented it as a big ScrollView, but I ran into really serious memory issues, because every item in my custom "gridview" is an imageview with a bitmap.
Any suggestions? I want to use something like a GridView, so that I can recycle the Views. Maybe I should override the Gridview class or should I implements my own GridView by extending the AbsListView?
Thanks.

