var self = Ti.UI.createWindow( { backgroundColor : '#cccccc', navBarHidden : true, exitOnClose : true }); var button1 = Ti.UI.createButton( { height : 44, width : 200, title : ('Helo Titanium World!'), top : 20 }); self.add(button1); button1.addEventListener('click', function() { alert(Ti.Platform.osname + " " + Ti.Platform.version); }); self.open();

0 件のコメント:
コメントを投稿