由于电话的来电,所有应用都会转到后台。是否有任何方法可以在Ionic 2应用程序中检测它何时进入后台并在该事件中采取措施
答案 0 :(得分: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。