未验证 提交 c229fcde 编写于 作者: O openharmony_ci 提交者: Gitee

!11106 modify window demo destroy

Merge pull request !11106 from leafly2021/0415_master
......@@ -374,9 +374,7 @@ class MainAbility extends Ability {
console.info('Succeeded in showing the window. Data: ' + JSON.stringify(data));
});
});
//5.销毁悬浮窗。当不再需要悬浮窗时,可根据具体实现逻辑,使用destroy对其进行销毁,此处以监听窗口区域外的点击事件为例实现悬浮窗的销毁。
windowClass.on('touchOutside', () => {
console.info('touch outside');
//5.销毁悬浮窗。当不再需要悬浮窗时,可根据具体实现逻辑,使用destroy对其进行销毁。
windowClass.destroy((err, data) => {
if (err.code) {
console.error('Failed to destroy the window. Cause: ' + JSON.stringify(err));
......@@ -385,7 +383,6 @@ class MainAbility extends Ability {
console.info('Succeeded in destroying the window. Data: ' + JSON.stringify(data));
});
});
});
}
};
```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册