由于电话的来电,所有应用程序都会转到后台。是否有任何方法可以在Ionic 2应用程序中检测它何时进入后台并在该事件中采取措施
由于我的不好,我无法发表评论,但我认为我可以提供指导。
我认为你应该订阅平台暂停和恢复活动,你应该做这样的事情。
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。