一旦测试字符串超出了textarea的宽度,我希望textarea能够水平滚动。我尝试了下面的代码,但是,由于某种原因,它不起作用。
我还尝试添加一个包装器视图来滚动视图并将textarea添加到包装器视图中;但这也不起作用。
我该如何解决这个问题?
var scroll = Ti.UI.createScrollView({
top:40,
left:230,
width:290,
height:50
});
win.add(scroll);
var textType = Ti.UI.createTextArea({
backgroundColor:'#E6E6E6',
borderColor:'blue',
borderRadius:10,
top:0,
left:0,
width:290,
height:50,
font:{fontSize:26, fontFamily:customFont},
editable:false,
enabled:false,
textAlign:'right',
scrollable:true
});
scroll.add(textType);
答案 0 :(得分:0)
我知道这个声音很简单但是,默认情况下,文本区域是垂直可滚动的。这是我所知道的唯一行为。我尝试了不同的属性,如:
layout:"horizontal",
horizontalWrap:true,
scrollable:true,
但这还没有解决问题。