scrollView + textAlign: center - doesn't work

You must Login before you can answer or comment on any questions.

I set up the height of the view to 2500, integrated a label and put everything into a scrollView. However, the text shows in the middle of the whole view and not from the top on. How can I change that?

The code: http://pastie.org/1252316

I'd appreciate any help.

1 Answer

Accepted Answer

Set the top and the height of the label like this:

var l1 = Ti.UI.createLabel({
    font:{fontSize:24},
    text:text1,
    textAlign:'center',
    top:0,
    height:'auto'
});

Your Answer

Think you can help? Login to answer this question!