HarmonyOS 如何实现单独某个页面实现横屏效果

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

参考demo:

1、首先打开entry下面的module.json5文件,在abilities节点下添加一个orientation的属性:"orientation": 'unspecified'。

2、第一个页面:

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

@Entry
@Component
struct aboutScreen1 {
  @State message: string = '';

  build() {
    Column() {
      Text('首页,点我跳转')
        .fontSize(30)
        .textAlign(TextAlign.Center)
        .width('100%')
        .fontWeight(500)
        .height('100%')
        .onClick(() => {
          router.pushUrl({url: "pages/aboutScreen2" })
        })
    }
    .justifyContent(FlexAlign.Center)
    .width('100%')
    .backgroundColor(Color.White)
    .height('100%')
  }
}

3、第二个页面:

import { router, window } from '@kit.ArkUI';
import { BusinessError } from '@kit.BasicServicesKit';

@Entry
@Component
struct aboutScreen2{
  @State message: string = '';

  aboutToAppear(): void {
    let orientation = window.Orientation.LANDSCAPE
    this.setScreenOrientation(orientation)
  }

  aboutToDisappear(): void {
    let orientation = window.Orientation.PORTRAIT
    this.setScreenOrientation(orientation)
  }

  setScreenOrientation(orientation: window.Orientation) {
    let windowClass: window.Window | undefined = undefined;
    try{
      let promise = window.getLastWindow(getContext())
      promise.then((data) => {
        windowClass = data
        windowClass.setPreferredOrientation(orientation)
      }).catch((err: BusinessError) => {
        console.error('getLastWindow error')
      })
    } catch (e) {
      console.error('setScreenOrientation error')
    }
  }

  build() {
    Column() {
      Text('我横屏啦')
        .fontSize(30)
        .textAlign(TextAlign.Center)
        .width('100%')
        .fontWeight(500)
        .height('50%')
    }
    .justifyContent(FlexAlign.Center)
    .width('100%')
    .backgroundColor(Color.White)
    .height('100%')
  }
}
分享
微博
QQ
微信
回复
5天前
相关问题
HarmonyOS 怎么设置某个 page 展示
157浏览 • 1回复 待解决
HarmonyOS 如何实现页面?
389浏览 • 1回复 待解决
page页面如何设置为显示
1948浏览 • 1回复 待解决
如何实现page页面的横竖切换
728浏览 • 1回复 待解决
HarmonyOS video如何播放?
499浏览 • 1回复 待解决
HarmonyOS 如何让app支持
257浏览 • 1回复 待解决
openharmony jsFA 如何显示?
7518浏览 • 1回复 待解决
如何获取当前是还是竖啊?
5121浏览 • 1回复 待解决