Phonegap Android 后退按钮 - 在主页上使用后退按钮关闭应用程序 [英] Phonegap Android Back Button - close app with back button on homepage

查看:27
本文介绍了Phonegap Android 后退按钮 - 在主页上使用后退按钮关闭应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 Jquery Mobile/Phonegap 开发一个 Android 应用程序.我有以下代码来控制手机的后退按钮:

I am developing a Android app using Jquery Mobile/Phonegap. I have the following code to control the phone's back button:

document.addEventListener("backbutton", backKeyDown, true); 


function backKeyDown() { 
    // Call my back key code here.
    $.mobile.changePage("#homepage", "slideup");
}

这一切正常,但我希望应用程序仅在按下主页上的后退按钮时关闭,这可能吗?

This all works fine, but I would like the app to close when pressing the back button on the homepage only, is this possible?

推荐答案

更新:这已停止使用最新的 Phonegap 更新(据说).如果您知道,请随时提供可行的解决方案.

这是我的做法:

document.addEventListener("backbutton", function(e){
    if($.mobile.activePage.is('#homepage')){
        /* 
         Event preventDefault/stopPropagation not required as adding backbutton
          listener itself override the default behaviour. Refer below PhoneGap link.
        */
        //e.preventDefault();
        navigator.app.exitApp();
    }
    else {
        navigator.app.backHistory()
    }
}, false);

有关更多信息,您可以在此处找到包含完整示例的相关文档:http://docs.phonegap.com/en/2.0.0/cordova_events_events.md.html#backbutton

For further information, here you can find the related documentation with a full example: http://docs.phonegap.com/en/2.0.0/cordova_events_events.md.html#backbutton

这篇关于Phonegap Android 后退按钮 - 在主页上使用后退按钮关闭应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆