I need to achieve a behavior like the last.fm tag cloud on Android.
This means: my items have android:layout_width="wrap_content"
, and I need to display horizontally until an item doesn't fit horizontally on the View
, which will be the first item of the next row. I'd also like to populate the view with a ListAdapter
.
Writing such View seems overly complicated. Is there any library project that achieves this effect?