HarmonyOS 自定义弹框不能全屏

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

参考demo:

@CustomDialog
export struct MyDialog1 {
  controller1: CustomDialogController
  title: string = ''
  build() {
    Row() {
      Column({ space: 10 }) {
        Text(this.title).fontSize(25)
          .fontColor(Color.Blue)
        Flex({ justifyContent: FlexAlign.SpaceAround }) {
          Button('取消')
            .onClick(() => {
              this.controller1.close()
            })
            .backgroundColor(0xffffff)
            .fontColor(Color.Black)
          Button('确认')
            .onClick(() => {
              this.controller1.close()
            })
            .backgroundColor(0xffffff)
            .fontColor(Color.Black)
        }
        .width('100%')
      }
      .width('100%')
      .backgroundColor(Color.Gray).height('100%')
    }
  }
}
// main页面
@Entry
@Component
struct Index {
  @State dialogData: string = ''
  @State colorTest: Color = Color.Blue
  dialogController1: CustomDialogController = new CustomDialogController({
    builder: MyDialog1({
      title: '弹窗1',
    }),
    // 弹窗容器样式是否自定义
    customStyle: true,
    offset: { dx: 0, dy: 0 },
    alignment: DialogAlignment.Top
  })

  confirm(data: string) {
    this.dialogData = data
    console.info('ssss') // 获取弹窗输入的信息
  }
  build() {
    Row() {
      Column({ space: 10 }) {
        Text('这是一个弹窗的测试')
          .fontSize(25).margin(20).fontColor(0x3399FF)
        Button('点击打开弹窗')
          .onClick(() => {
            this.dialogController1.open()
          })
      }.width('100%')
    }.height('100%').backgroundColor(Color.White)
  }
}
分享
微博
QQ
微信
回复
4h前
相关问题
HarmonyOS 自定义组件问题
460浏览 • 1回复 待解决
是否可以自定义权限文字
1687浏览 • 1回复 待解决
自定义的状态获取
864浏览 • 1回复 待解决
如何给自定义加上圆角背景
2058浏览 • 1回复 待解决
HarmonyOS 自定义导致机测不通过
154浏览 • 1回复 待解决
HarmonyOS 自定义键盘不能顶起输入
350浏览 • 1回复 待解决
自定义,遮罩背景颜色无法设置
333浏览 • 1回复 待解决
HarmonyOS 自定义弹窗遮罩未全屏
665浏览 • 1回复 待解决
HarmonyOS 自定义装饰器不能作用于ets
431浏览 • 1回复 待解决
如何实现一个自定义询问
422浏览 • 1回复 待解决
HarmonyOS 自定义键盘输入焦点问题
12浏览 • 0回复 待解决