1

Is there an existing Android widget third-party implementation that looks like a GridView but supports variable height items? I need one for images, but of course one that works with arbitrary views will work. Memory management is important, such that the Views and the bitmaps may be recycled.

Or, a way to convert GridView source code to do this?

An example of the grids:

1A 2A 3A

1A 2A 3B

1A 2B 3C

The first column contains 1 item labeled as 1A (relative height 1), the second one contains two items labeled as 2A (relative height 2/3) and 2B (relative height 1/3). The third column contains three items (all of them with relative height 1/3).

Vicent
  • 5,322
  • 2
  • 28
  • 36
mparaz
  • 2,049
  • 3
  • 28
  • 47

1 Answers1

2

I suppose you are looking for something like VariableSizedWrapGrid in MS Windows 8. I think there is no a similar thing for Android. Maybe suggestions in this SO thread will help you.

Community
  • 1
  • 1
Vicent
  • 5,322
  • 2
  • 28
  • 36