鸿蒙开发中如何设置屏幕横屏或者横竖屏自动切换?
使用 windowClass.setPreferredOrientation(orientation);
再 index page 的 onPageShow 设置:
window.getLastWindow(getContext(this))
.then((windowClass: window.Window) => {
windowClass.setPreferredOrientation(window.Orientation.AUTO_ROTATION);
})
.catch((error: Error) => {
})
更多的枚举参见:
https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-window-V5#orientation9