Ref: Cordova Plugin APIs Ctrl+F "Dialogs"
安裝方式請參考連結Android
結合關閉App的應用:
function show_CloseConfirm(){
navigator.notification.confirm(
'Do you really want to exit?', // message
close_app, // callback to invoke with index of button pressed
"Exit", // title
['Cancel','OK'] // buttonLabels
);
}
function close_app(buttonIndex){
if (buttonIndex==2){
navigator.app.exitApp();
}
}iOS
還沒想到要應用在哪裡,未有實際應用範例…
Ps. iOS不允許App關閉任何App(包括App自身)
沒有留言:
張貼留言