私はチタンでボタンのイベントリスナーを作成しています。コードをデバッグすると、リスナーに実装した関数の本体には行きません。コードは次のとおりです。
Titanium.UI.setBackgroundColor('#000');
var win = Ti.UI.createWindow({
backgroundColor:'#ccc',
title:'Android Cloud Push Notification'
});
var btnSearchcompany = Titanium.UI.createButton({
backgroundImage : 'images/search.png',
top : '32%',
width : '15%',
height : '5%',
right : '12%',
borderRadius : 3
});
win.add(btnSearchcompany);
function searchcompanyyql(){
alert("wahhab");
}
btnSearchcompany.addEventListener('click', function(e) {
searchcompanyyql();
});
win.open();