I am trying to create a layout similar to the one used to show albums in Windows Media Player (see screenshot below).
I have found that:
- it is not possible to stuff gridviews inside listviews.
- it is also not possible having headers or categories inside gridviews.
- my worry in building the view dynamically is that we can have thousands of items in total (hundred of categories and hundred of items within each category). So I think building a whole layout on activity/fragment creation is out of question.
Is my only possibility to develop a custom widget? Has anybody managed to get something like this running?
PS: I am targetting Honeycomb if it helps.