鸿蒙系统中如何有效地监听屏幕方向变化并响应?

鸿蒙系统中如何有效地监听屏幕方向变化并响应?

阅读 849
1 个回答

可以参考 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 事件,根据屏幕的方向更新页面上的文本显示。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题