Hello. I recently downloaded the Titanium 2.0.1 Mobile SDK, and I had one /major/ issue with it.
In the previous versions, I could add a multiline label with its height set to 'auto' in a scrollview, and so it filled the scrollview on its entire height and I could just scroll to see the entire text.
Now, it seems I'm not able to do this anymore, probably because of the new layout system. If you need any screenshots to understand the situation, just ask!
3 Answers
I just found a simple hack for this, just add "\n " (with a space) at the end of the label and it will be completely visible in the ScrollView.
Change height:'auto' to height:Ti.UI.SIZE
see : http://developer.appcelerator.com/blog/2012/04/layout-changes-for-2-0.html
I found this guide, but it doesn't solve anything, as Ti.UI.FILL only vertically centers the label in the scrollview and it seems there's no alternative.
Your Answer
Think you can help? Login to answer this question!