鸿蒙开发中如何实现page页面的横竖屏切换?

鸿蒙开发中如何实现page页面的横竖屏切换?

阅读 1k
1 个回答

方法一:使用 setPreferredOrientation 设置横竖屏切换。参考代码如下:

import { window } from '@kit.ArkUI';

@Entry
@Component
struct Index {
  @State message: string = 'Hello World';
  private portrait: boolean = true

  changeOrientation = () => {
    // 获取当前页面
    let context = getContext(this)
    window.getLastWindow(context).then((mainWindow) => {
      this.changeOrientationInternal(mainWindow)
    }).catch((error: ESObject) => {
      console.log('getMainWindow error: ' JSON.stringify(error))
    })
  }

  changeOrientationInternal(lastWindow: window.Window) {
    if (this.portrait) {
      // 切换成横屏
      lastWindow.setPreferredOrientation(window.Orientation.LANDSCAPE).then(() => {
        console.log('setPreferredOrientation success')
        this.portrait =!this.portrait
      }).catch((error: ESObject) => {
        console.log('setPreferredOrientation failure' + JSON.stringify(error))
      })
    } else {
      // 切换成竖屏
      lastWindow.
    }
  }
}

方法二:设置方法:setPreferredOrientation(orientation: Orientation, callback: AsyncCallback<void>): void,Orientation 取值为 AUTO_ROTATION,表示传感器自动旋转模式。参考代码如下:

let orientation = window.Orientation.AUTO_ROTATION;  
try{  
 windowClass.setPreferredOrientation(orientation, (err) => {  
 if(err.code){  
 console.error('Failed to set window orientation. Cause: ' JSON.stringify(err));  
 return;  
 }  
 console.info('Succeeded in setting window orientation.');  
 });  
}catch (exception) {  
 console.error('Failed to set window orientation. Cause: ' JSON.stringify(exception));  
}

方法三:如果想要开发的 app 具备横竖屏切换能力,可以在 module.json5 中设置"orientation"属性值为"auto_rotation",应用即具备横竖屏切换能力。若需要横竖屏切换受系统控制(打开自动旋转生效,关闭失效),可以赋值为"auto_rotation_restricted",示例代码:

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