1

我正在尝试使用 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 来做同样的事情。任何想法??

4

1 回答 1

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

于 2012-07-02T16:53:42.850 回答