Romain Guy created a great presentation and sample implementation for a FlowLayout in Android Activities (which he links to in the answer to this question: How can I do something like a FlowLayout in Android? )
I would love to use something like this in an App Widget but they seem to be extremely locked down to the layout classes mentioned in the documentation: http://developer.android.com/guide/topics/appwidgets/index.html#CreatingLayout .
I tried to extend LinearLayout but it appears descendants of the mentioned layouts are not permitted. Perhaps I can programatically rearrange my TextViews using a RelativeLayout?
Is there a smarter way to achieve this?
Why are Widget layouts so very restrictive? Am I missing something important?