HarmonyOS @CustomDialog如何铺满整个屏幕

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

可以通过设置CustomDialogController以下三个属性达到预期效果:

customStyle: true,
offset: { dx: 0, dy: 0 },
alignment: DialogAlignment.Top

可参考以下示例:

import { MeasureText } from '@kit.ArkUI';
import measure from '@ohos.measure'
import { http } from '@kit.NetworkKit';

const BLOCK_DEFAULT_BORDER_WIDTH = 4;

@Entry
@Component
struct SliderIndex {
  @State loginState: string = '未登录'
  dialogControllerTwo: CustomDialogController | null = new CustomDialogController({
    builder: CustomDialogExampleTwo({ msg: this.loginState }),
    customStyle: true,
    offset: { dx: 0, dy: 0 },
    alignment: DialogAlignment.Top,

    // offset: { dx: 0, dy: -25 }
  })
  controller?: CustomDialogController

  onPageShow(): void {

  }

  login() {

    return '登录失败';
  }

  build() {
    Column() {
      Text('当前状态:' + this.loginState)
      Text('登录')
        .onClick(() => {

          let res = this.login()
          this.loginState = res
          console.log('denglu ===', res)
          if (res === '登录失败') {
            if (this.dialogControllerTwo) {
              this.dialogControllerTwo.open()
            }
          }
        })
    }
  }
}

@CustomDialog
struct CustomDialogExampleTwo {
  controllerTwo?: CustomDialogController
  @Prop msg: string = ''

  build() {
    Column() {
      Text(this.msg)
        .fontSize(30)
        .height(100)
      Button('点我关闭弹窗')
        .onClick(() => {
          if (this.controllerTwo != undefined) {
            this.controllerTwo.close()
          }
        })
        .margin(20)
    }
    .width('100%')
    .height('100%')
    .backgroundColor(Color.Orange)
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
HarmonyOS Text组件无法铺满屏幕
36浏览 • 1回复 待解决
HarmonyOS使用CustomDialog如何设置宽度
558浏览 • 1回复 待解决
HarmonyOS CustomDialog显示层级如何控制
49浏览 • 1回复 待解决
如何控制CustomDialog显示层级
691浏览 • 1回复 待解决
HarmonyOS CustomDialog相关
39浏览 • 1回复 待解决
HarmonyOS 如何动态适配屏幕
55浏览 • 1回复 待解决
HarmonyOS 如何感知屏幕解锁
70浏览 • 1回复 待解决
HarmonyOS @CustomDialog 调用 pushUrl
311浏览 • 1回复 待解决
HarmonyOS 关于CustomDialog使用
395浏览 • 1回复 待解决