以下のようにいくつかのimageViewsを作成しています。
// Time buttons
var timeButtons =[
{ title: 'Afternoon', path: 'images/others/time/afternoon.png'},
{ title: 'CurrentTime', path: 'images/others/time/currenttime.png'},
{ title: 'Evening', path: 'images/others/time/evening.png'}
]
createButtons(timeButtons);
/* Button creation function */
function createButtons(data){
for (var i = 0; i < data.length; i++){
//Creating each button
var button = Titanium.UI.createImageView({
image: data[i].path,
height: 90,
width: 90,
top: 20+90*i+20*i,
value: 1
});
//Adding the buttons to the center view
centerButtons.add(button);
}
}
ここで、ユーザーがいずれかのimageViewをクリックしたときに、クリックしたimageViewを識別し、それに応じて何かを実行したいと思います。