我正在尝试使用phonegap和LocalNotification插件开发一款Android应用。 我想在onPause中运行我的应用, 在我的index.html上
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点击来做同样的事情。 有什么想法??
答案 0 :(得分:1)
在此方法中输入您想要的任何代码:
@Override
public void onBackPressed() {
// TODO Auto-generated method stub
super.onBackPressed();
}
此处教程:http://chrisrisner.com/31-Days-of-Android--Day-10%E2%80%93The-Back-Button