I'm programmatically putting various TextView
s into a LinearLayout
with a horizontal orientation.
After 2h of research I couldn't find out how to tell Android not to squeeze all the TextViews in one line but instead to "float" non-fitting TextView
s into the next line.
I know there isn't something like actual "lines" in a LinearLayout
, but how can I tell the TextView
s to actually behave like floating DIVs from the HTML world?
Thanks alot!