I'm working on an app that retrieves news articles from the web and displays them. The article contains different parts, text parts, images etc. so what I'm doing is parsing the article, creating Views (TextView, ImageView etc) accordingingly and adding them to a LinearLayout.
Especially on a tablet in landscape mode, this doesnt look good, so first thing which comes to mind is makes it 2 columns.
My question is: is there a library or a good piece of code out there that can do some if the work that is entailed with that, like measuring the height if the views I have added, choosing a good place within the content from where to switch to the second column, take care that the right column doesn't get deeper than the left one etc?
Pic for explanation.