由于电话的来电,所有应用程序都进入后台。有没有办法在 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();
});
}
}
如果您需要更多详细信息来参考我从中提取代码的这篇文章。