2

我有一個應用程序使用抽屜小部件..所以在該抽屜js文件我有一個按鈕,用戶可以點擊並退出..但它不工作。從應用程序全球功能鈦退出

這裏是我的index.js文件

var win = $.index; 

這裏是我的drawer.js文件

var button = $.exit; 

button .addEventListener('android:back',function(e) { 
    win.close(); 
}); 

當用戶點擊按鈕的應用程序應exit..Thank您!

+0

Working on iOS or android – 2014-12-08 19:39:43

回答

0

'android:back'事件已被棄用,您應該使用'androidback'來代替。 因此,正確的drawer.js應該看起來像這樣:

var button = $.exit; 

button .addEventListener('androidback',function(e) { 
    Ti.Android.currentActivity.finish(); //this is a proper way to close the application in android 
});