I'm attempting to create a list view in Android that shows clickable items that wrap horizontally much like the "To" field in the OS X and iPhone's Mail programs. They have a horizontal list of names that wrap vertically and each name is a separate object, the list is not just a single string. My questions are:
Is there a way to do this with a ListView or some other type of AdapterView? Everything I've seen and experimented with is either horizontal scrolling or vertically stacking, but not horizontal wrapping.
Are you aware of an existing app with available source that has a view like this that I could look at as an example? The Google Mail/SMS apps just has a single string in the too field that isn't clickable.