在我的 Titanium 应用程序中,我有一个包含 6 个相同字段的表单,唯一的区别是它们的标题。我没有重复代码(不好的做法,更多的工作等),而是使用了一个 for 循环来动态创建具有 2 个标签和一个视图的每个字段:
//Required info
var startht = 30;
var sz = 40;
var width = '90%';
var labelgrp1 = new Array('Field 1', 'Field 2', 'Field 3', 'Field 4', 'Field 5', 'Field 6');
var viewbg = '#D4D4D4';
//For the first group of labels
for(var i=0; i<labelgrp1.length; i++) {
var view = Titanium.UI.createView({
borderColor:'#000',
backgroundColor:viewbg,
touchEnabled: true,
width:width, height:40,
top: startht + i * (sz - 1)
});
var label = Ti.UI.createLabel({
color: '#303030',
font: { fontSize:16 },
shadowColor: '#aaa',
shadowOffset: {x:1, y:1},
text: labelgrp1[i],
left:10,
width: 'auto', height: 'auto'
});
var symbol = Ti.UI.createLabel({
color: '#303030',
font: { fontSize:14 },
right:10,
text: '>',
width: 'auto', height: 'auto'
});
view.add(label);
view.add(symbol);
win.add(view);
}
我尝试将其添加到底部:
view.addEventListener('focus',function(e){
Ti.API.info("Clicked on " + label.text);
});
但无济于事。有没有办法动态创建事件监听器,或者我需要为每个字段有一个单独的视图对象,以便它可以直接绑定到事件监听器?