The Google Play application presents the top lists of different categories in a GridView-like way (screenshot). I\'m pretty sure that it\'s not a standard GridView, since wh
To answer my own question:
I disassembled the Google Play app and found that they're using simple ListView here, with a BucketListAdapter. This adapter presents the list-elements in a GridView-like way, splitting them to columns. This way they could also use list footers and headers.
I've rolled my own implementation of this, if anyone's interested, it can be found here: https://github.com/rzsombor/bucket-list-adapter. It's still working in progress stuff however.