I am having this problem for quite a while now, was hoping it was resolved with the latest SDK, but unfortunately it's still showing up (and driving me crazy).
We are displaying remote data in a tableView: a thumbnail, title etc. No rocketscience there. Using labels for descriptions and titles. The problem: the amount/length of text (description) varies. No problem on iOS, but on Android the tableViewRow height isn't adapted correctly. Result: text disappears, falls behind the row bottom.
I've tried to set the height to Ti.UI.SIZE and "auto", but no result. Also adding the labels to a View with vertical layout, auto height etc. Long descriptions keep disappearing, and weird spaces are created between the articleContainer view, because of the height differences.
The only solution so far I've found is to do a check with .toImage().height on all labels, after the layout is set. Then, updating the labels with the new height. This results in a annoying flickering-behaviour.
Layout view we use: http://pastebin.com/fWu3xJJn
Anyone got an idea?