Exit from app when click button in android phonegap?

前端 未结 7 1749
时光取名叫无心
时光取名叫无心 2020-12-28 11:13

I am new to phonegap. I have prepared one sample application. My application has 2 pages, the first page has one button, when clicked the second page will open. It is workin

7条回答
  •  被撕碎了的回忆
    2020-12-28 12:11

    I used a combination of the above because my app works in the browser as well as on device. The problem with browser is it won't let you close the window from a script unless your app was opened by a script (like browsersync).

            if (typeof cordova !== 'undefined') {
                if (navigator.app) {
                    navigator.app.exitApp();
                }
                else if (navigator.device) {
                    navigator.device.exitApp();
                }
            } else {
                window.close();
                $timeout(function () {
                    self.showCloseMessage = true;  //since the browser can't be closed (otherwise this line would never run), ask the user to close the window
                });
            }
    

提交回复
热议问题