49

有什么方法可以检查应用程序是在 ionic/cordova/phonegap 的前台还是后台运行,我需要在 android 和 ios 上使用它,非常感谢

4

8 回答 8

56

使用两个事件“ Pause”和“ Resume”。您可以在Apache Cordova 事件文档中找到所有事件。

事件 - 暂停:

  • 当本机平台将应用程序置于后台时会触发 pause 事件,通常是在用户切换到不同的应用程序时。

活动 - 简历

  • 当本机平台从后台拉出应用程序时,会触发 resume 事件。

您可以为此添加一个事件监听器到您的代码中。对于这两个事件,这将是:

暂停 - 快速示例

document.addEventListener("pause", onPause, false);

function onPause() {
    // Handle the pause event
}

或像这样的完整示例

<!DOCTYPE html>
<html>
  <head>
    <title>Pause Example</title>

    <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
    <script type="text/javascript" charset="utf-8">

    // Wait for device API libraries to load
    //
    function onLoad() {
        document.addEventListener("deviceready", onDeviceReady, false);
    }

    // device APIs are available
    //
    function onDeviceReady() {
        document.addEventListener("pause", onPause, false);
    }

    // Handle the pause event
    //
    function onPause() {
    }

    </script>
  </head>
  <body onload="onLoad()">
  </body>
</html>

简历 - 快速示例

document.addEventListener("resume", onResume, false);

function onResume() {
    // Handle the resume event
}

或像这样的完整示例

<!DOCTYPE html>
<html>
  <head>
    <title>Resume Example</title>

    <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
    <script type="text/javascript" charset="utf-8">

    // Wait for device API libraries to load
    //
    function onLoad() {
        document.addEventListener("deviceready", onDeviceReady, false);
    }

    // device APIs are available
    //
    function onDeviceReady() {
        document.addEventListener("resume", onResume, false);
    }

    // Handle the resume event
    //
    function onResume() {
    }

    </script>
  </head>
  <body onload="onLoad()">
  </body>
</html>

试试看,让我知道,如果你需要进一步的帮助!

于 2015-04-13T15:43:08.073 回答
49

对于 Ionic 2 和 Ionic 3,解决方案是:

import { Platform } from 'ionic-angular';

@Component({
  template: `OK`
})

constructor(public platform: Platform) {

    platform.ready().then(() => {

      if (platform.is('cordova')){

        //Subscribe on pause i.e. background
        this.platform.pause.subscribe(() => {
          //Hello pause
        });

        //Subscribe on resume i.e. foreground 
        this.platform.resume.subscribe(() => {
          window['paused'] = 0;
        });
       }
    });
}

于 2017-06-23T10:22:06.240 回答
12

基于 Sithys 的 Ionic 小服务回答:

factory('BackgroundCheck', function($ionicPlatform){
    var service = {};
    var inBackground = false;

    $ionicPlatform.ready(function() {        
        document.addEventListener("resume", function(){inBackground = false;}, false);
        document.addEventListener("pause", function(){inBackground = true;}, false);
    });

    service.isActive = function(){
        return inBackground == false;
    }
    return service;    
})
于 2016-06-26T21:36:20.130 回答
8

“有什么方法可以检查应用程序是在前台运行还是在后台运行?”

是的。

1) 当应用程序变为非活动状态(在后台运行)时,Cordova 触发pause事件,当应用程序再次变为活动状态(带到前台)时,Cordova 触发resume事件。

2)从这些事件中,可以使用一个变量将状态存储为“前景”或“背景”。

document.addEventListener("deviceReady", function readyCallback() {


    var isAppInForeground = true;


    document.addEventListener("pause", function pauseCallback() {
      isAppInForeground = false;
    }, false);

    document.addEventListener("resume", function resumeCallback() {
      isAppInForeground = true;
    }, false);

});
于 2017-05-25T11:29:30.550 回答
6

2019 年 9 月 17 日

这在应用程序上对我来说很好Ionic 4Android在和iOS设备上进行了测试。

应用程序组件.ts

async initializeApp() {
    await this.platform.ready();

    if (this.platform.is('cordova')) {
        this.setPlatformListener();
   }
 }


  setPlatformListener() {
    this.platform.pause.subscribe(() => {// background
      console.log('In Background');
    });

    this.platform.resume.subscribe(() => {// foreground
      console.log('In Foreground');
    });
  }
于 2019-09-17T13:13:49.277 回答
5

使用角度抽象ionic.Platform

//The pause event fires when the native platform puts the application
// into the background, typically when the user switches to a different 
// application.
$ionicPlatform.on('pause', function () {
    // Handle event on pause
});
// The resume event fires when the native platform
//  pulls the application out from the background.
$ionicPlatform.on('resume', function () {
    // Handle event on resume
});

请参阅$ionicPlatform 的 ionic v1 文档

于 2017-01-23T14:51:28.057 回答
3

您还可以使用:

import { Platform, Config, MenuController } from '@ionic/angular';

...

constructor( private platform: Platform)

...

this.platform.resume.subscribe(() => {
      // Handle event on resume
    });


this.platform.pause.subscribe(() => {
          // Handle event on pause
        });
于 2019-04-04T18:44:19.507 回答
-1
initializeApp() {
  //Subscribe on pause i.e. background or lock phone
       this.platform.pause.subscribe(() => {
          console.log('pause')
      });
  //Subscribe on pause i.e. background or unlock phone
      this.platform.resume.subscribe(() => {
          console.log('resume');
     });
}
于 2019-11-08T10:36:22.803 回答