可以参考 display.on(‘add’|‘remove’|‘change’);也可以通过判断用户是否开启了旋转锁定,进行监听方向传感器或者取消监听。以下是一个在 HarmonyOS Next 中监听屏幕方向变化并响应的例子:import display from '@ohos.display'; @Entry @Component struct ScreenOrientationExample { @State orientationMessage: string = ''; onInit() { display.on('change', (data) => { let orientation = data.orientation; if (orientation === 0 || orientation === 180) { this.orientationMessage = '竖屏'; } else { this.orientationMessage = '横屏'; } }); } build() { Column() { Text(this.orientationMessage).fontSize(20); } } }在这个例子中,通过监听 display 的 change 事件,根据屏幕的方向更新页面上的文本显示。
可以参考 display.on(‘add’|‘remove’|‘change’);也可以通过判断用户是否开启了旋转锁定,进行监听方向传感器或者取消监听。
以下是一个在 HarmonyOS Next 中监听屏幕方向变化并响应的例子:
在这个例子中,通过监听 display 的 change 事件,根据屏幕的方向更新页面上的文本显示。