how to scroll page?

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

working on an android app. i have taken then content by linking it to a text.file but even if the content fills up the page, i can't scroll down. what codes do i need to add in?

1 Answer

Hi Gustin,

Try to use this code.

var txtDesc = Ti.UI.createTextArea({
    left : 10,
    top : 20,
    width : 300,
    height : 400,
    font : {
        fontWeight : 'bold',
        fontColor : 'black'
    },
    enabled : false
});
win.add(txtDesc);

Your Answer

Think you can help? Login to answer this question!