Skip to content Skip to sidebar Skip to footer

In The Google Play App, How Is The Viewgroup Showing The Application Top Lists Implemented?

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 when I scro

Solution 1:

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.

Post a Comment for "In The Google Play App, How Is The Viewgroup Showing The Application Top Lists Implemented?"