我正在尝试使用 phonegap 和 LocalNotification 插件开发一个 android 应用程序。我想在我的 index.html 上的 onPause 中运行我的应用程序
document.addEventListener("pause", onPause, false);
function onPause() { // 处理暂停事件
setInterval( function() {
Ext.data.JsonP.request({
url: 'http://convert4mobile.net/backend/API/qr/push.php',
callbackKey: 'callback',
success: function(data)
{
if(data.success == true)
{
if (typeof plugins !== "undefined") {
window.plugins.localNotification.add({
date : new Date(),
message : data.time+"\r\n"+data.msg,
ticker : "A new code was generated",
repeatDaily : false,
id : 4
});
}
}
}
});
} , 2000);
}
当应用程序被主页按钮/结束通话按钮关闭/最小化时,它工作正常。我想通过点击 BackButton 来做同样的事情。任何想法??