> Thank you. I was looking for something that would mimic the behavior > of floating elements in HTML, where several items can be added and > they could end up looking like a grid. > > Like this: http://gobeering.com/beers.html > > If you look at that page on a mobile device, the tags under a beer > will move to a second row, when needed.
Android doesn't offer much in the way of wrapping in its built-in layout classes, other than text in a TextView (which can include links, via Linkify or other means of creating a suitable Spannable). You also could use HTML via a WebView, and nix the GridView and ListView altogether. -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer Books: http://commonsware.com/books.html -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

