在Ionic 2 app中检测事件

问题描述 投票:0回答:1

由于电话的来电,所有应用程序都会转到后台。是否有任何方法可以在Ionic 2应用程序中检测它何时进入后台并在该事件中采取措施

javascript android ionic2 sip
1个回答
0
投票

由于我的不好,我无法发表评论,但我认为我可以提供指导。

我认为你应该订阅平台暂停和恢复活动,你应该做这样的事情。

ionViewDidLoad() {
this.platform.ready().then(() => {
  this.platform.pause.subscribe(() => {
    this.connectState = ‘disconnected’;
    this.connected = false;
    this.buttonDisabled = true;
  });
  this.platform.resume.subscribe(() => {
    this.checkConnectivity();
  });
}

}

如果您需要更多细节来引用我从中提取代码的this post

© www.soinside.com 2019 - 2024. All rights reserved.