HarmonyOS 代码中如何设置屏幕旋转方向

应用需要适配ipad,并支持屏幕旋转,希望设备是手机类型时,不支持旋转,类型是平板的,可以旋转,我参考了这些文档,没找到相关设置:https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/arkts-rotation-transition-animation-V5

https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/module-configuration-file-V5

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
aquaa

通过deviceInfo.deviceType判断机型是平板还是手机,通过 let orientation = window.Orientation.AUTO_ROTATION; //设置窗口方向为传感器自动旋转模式。

示例代码如下:

import window from '@ohos.window';
import display from '@ohos.display';
import deviceInfo from '@ohos.deviceInfo';


const TAG = 'foo'
const ORIENTATION: Array<string> = ['垂直', '水平', '反向垂直', '反向水平']

@Entry
@Component
struct ScreenTest {
  @State rotation: number = 0
  @State message: string = ORIENTATION[this.rotation]

  aboutToAppear() {
    if(deviceInfo.deviceType == 'phone'){

    }else {
      this.setOrientation()
    }

    let callback = async () => {
      let d = await display.getDefaultDisplaySync()
      this.rotation = d.rotation
      this.message = ORIENTATION[this.rotation]
      console.info(TAG, JSON.stringify(d))
    }
    try {
      display.on("change", callback);//监听屏幕状态改变
    } catch (exception) {
      console.error(TAG, 'Failed to register callback. Code: ' + JSON.stringify(exception));
    }
  }

  setOrientation() {
    try {
      window.getLastWindow(getContext(this), (err, data) => { //获取window实例
        if (err.code) {
          console.error(TAG, 'Failed to obtain the top window. Cause: ' + JSON.stringify(err));
          return;
        }
        let windowClass = data;
        console.info(TAG, 'Succeeded in obtaining the top window. Data: ' + JSON.stringify(data));

        let orientation = window.Orientation.AUTO_ROTATION; //设置窗口方向为传感器自动旋转模式。
        try {
          windowClass.setPreferredOrientation(orientation, (err) => {
            if (err.code) {
              console.error(TAG, 'Failed to set window orientation. Cause: ' + JSON.stringify(err));
              return;
            }
            console.info(TAG, 'Succeeded in setting window orientation.');
          });
        } catch (exception) {
          console.error(TAG, 'Failed to set window orientation. Cause: ' + JSON.stringify(exception));
        }
        ;
      });
    } catch (exception) {
      console.error(TAG, 'Failed to obtain the top window. Cause: ' + JSON.stringify(exception));
    }
    ;
  }

  build() {
    Row() {
      Column() {
        Text(`${this.rotation}`).fontSize(25)
        Text(`${this.message}`).fontSize(25)
      }
      .width("100%")
    }
    .height("100%")
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS如何设置应用跟随屏幕旋转
374浏览 • 1回复 待解决
如何设置屏幕方向为横屏
1311浏览 • 1回复 待解决
HarmonyOS 组件旋转后,平移方向出错
75浏览 • 1回复 待解决
HarmonyOS 旋转设备获取设备方向问题
47浏览 • 1回复 待解决
window获取屏幕方向配置
474浏览 • 1回复 待解决
HarmonyOS 视频播放器如何旋转屏幕
0浏览 • 1回复 待解决
如何实现应用的屏幕自动旋转
2294浏览 • 1回复 待解决
HarmonyOS 传感器判断屏幕方向
60浏览 • 1回复 待解决
获取当前设备的屏幕方向
528浏览 • 1回复 待解决
有谁知道如何监听屏幕旋转
2089浏览 • 1回复 待解决
HarmonyOS Text组件如何设置文字方向
45浏览 • 1回复 待解决
HarmonyOS 怎么监听屏幕横竖屏旋转
32浏览 • 1回复 待解决
屏幕自动旋转的示例有哪些?
438浏览 • 1回复 待解决