鸿蒙-app进入最近任务列表触发的监听
如果在UIAbility中,参考第一个链接,在页面中参考如下: @State windowStage: window.WindowStage = (getContext(this) as common.UIAbilityContext).windowStage try { this.windowStage.on('windowStageEvent', (data) => { // 前台应用进入最近任务界面触发 if (data == window.WindowStageEventType.PAUSED) { this.eventType = false; } }); } catch (exception) { Logger.error('MailListItemComponent', 'Failed to enable the listener for window stage event changes. Cause:' + JSON.stringify(exception)); }
在aboutToDisappear中记得关闭监听 this.windowStage.off('windowStageEvent');
原文地址:https://blog.csdn.net/m0_51170428/article/details/142596044
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!