HarmonyOS 鸿蒙Next中web网页播放视频 点击全屏播放 切换到横屏时,视频只显示了一半
HarmonyOS 鸿蒙Next中web网页播放视频 点击全屏播放 切换到横屏时,视频只显示了一半 web网页播放视频 点击全屏播放 切换到横屏时,视频只显示了一半,该怎么处理
2 回复
在Web组件全屏事件中调用窗口方向设置接口:
Web({ src: '网页地址', controller: this.controller })
.onFullScreenEnter(() => {
window.getLastWindow(getContext(this)).then((lastWindow) => {
lastWindow.setPreferredOrientation(window.Orientation.LANDSCAPE);
});
})
.onFullScreenExit(() => {
window.getLastWindow(getContext(this)).then((lastWindow) => {
lastWindow.setPreferredOrientation(window.Orientation.PORTRAIT);
});
})
更多关于HarmonyOS 鸿蒙Next中web网页播放视频 点击全屏播放 切换到横屏时,视频只显示了一半的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html


