本文介绍了PhoneGap的科尔多瓦1.7.0完全退出应用程序的Android的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我用科尔多瓦1.7.0,虽然试图与1.6.1和调用的全面退出应用程序,我发现在互联网上的所有方法。但我的Android应用程序始终保持在后台运行。我使用的:
I use Cordova 1.7.0, though tried with 1.6.1 and invoked all methods of full exiting app I found on the internet. But my android app always remains running in background.I use:
document.addEventListener("backbutton", function(e) {
if ($.mobile.activePage.attr('id') === 'homePage') {
navigator.app.exitApp();
} else {
window.history.back();
}
}, false);
现在,它完全退出模拟器上,但从来没有在设备上。有没有一种肯定的方式来杀死PhoneGap的退出在Android应用程序?
Now, it exits fully on simulator, but never on the device. Is there a sure way to kill Phonegap app on exit in android?
推荐答案
看
<script>
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
blackberry.system.event.onHardwareKey(blackberry.system.event.KEY_BACK,
function() {
if ($.mobile.activePage.attr('id') == 'page') {
blackberry.app.exit();
return false;
}
else {
history.back();
return false;
}
});
}
</script>
这篇关于PhoneGap的科尔多瓦1.7.0完全退出应用程序的Android的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!