HarmonyOS 在App滑到应用管理窗口的时机有事件回调吗?

在播放视频时,将App滑向手机的应用管理窗口,视频依然播放,无法停止。有没有可以监听App滑动到应用管理窗口的事件。

HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
FengTianYa

参考下window窗口的监听事件:https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-window-V5#offwindowevent10

demo:

curWindow: window.Window | undefined = undefined;
context: common.UIAbilityContext = getContext(this) as common.UIAbilityContext
async aboutToAppear(): Promise<void> {
  if (this.context) {
  window.getLastWindow(getContext(this), (err, data) => {
  this.curWindow = data
  if (this.curWindow) {
  this.curWindow.on('windowEvent', (data) => {
  console.info('Window event happened. Event:' + JSON.stringify(data));
  if (data.toString() == '6') {
  this.videoPlayerModel.controller.pause();
}
分享
微博
QQ
微信
回复
2天前
相关问题
HarmonyOS 事件
38浏览 • 1回复 待解决
HarmonyOS Scroll组件事件问题
192浏览 • 1回复 待解决
焦点事件onBlur/onFocus无法触发
2028浏览 • 1回复 待解决