我正在创建一个 iOS 应用程序,其中用户单击图像并将字母“A”连接到字符串变量。
现在,我有一个带有变量字符串值的文本区域。每次将新字母连接到变量字符串时,都会更新文本区域值。
问题是当文本区域的宽度;之后添加的字母是看不到的。一旦字符串长度超过文本区域的宽度,如何使最后输入的字符始终可见?
需要解决这个问题!
代码 :
var image = Ti.UI.createImageView({
backgroundColor:'red',
width: 200,
height:100
});
win.add(image);
var scroll = Ti.UI.createScrollView({
top:40,
left:230,
width:290,
height:50,
borderRadius:10,
backgroundColor:'transparent',
scrollType:'horizontal',
scrollingEnabled : 'true',
showVerticalScrollIndicator:true,
showHorizontalScrollIndicator:true,
});
win.add(scroll);
var textType = Ti.UI.createTextArea({
backgroundColor:'#E6E6E6',
borderColor:'blue',
borderRadius:10,
top:0,
left:-70,
width:390,
height:50,
font:{fontSize:26, fontFamily:customFont},
editable:true,
enabled:false,
textAlign:'right',
scrollable:true,
horizontalScroll : true,
scrollType:'horizontal'
});
scroll.add(textType);
image.addEventListener('click, function(e){
string = string + "A";
textType.setValue(string);
}