HarmonyOS promptAction.openCustomDialog 自定义宽度&圆角

HarmonyOS  promptAction.openCustomDialog 自定义宽度&圆角

HarmonyOS
2024-09-04 08:48:59
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
put_get

目前promptAction.openCustomDialog并没有设置宽度和圆角的接口,推荐使用dialogController的方式实现呢,demo如下:

// Index.ets 
@CustomDialog 
struct CustomDialogExample { 
  controller?: CustomDialogController 
  cancel: () => void = () => { 
  } 
  confirm: () => void = () => { 
  } 
  build() { 
    Column() { 
      Text('自定义弹窗') 
        .fontSize(30) 
        .height(100) 
      Button('点我关闭弹窗') 
        .onClick(() => { 
          if (this.controller != undefined) { 
            this.controller.close() 
          } 
        }) 
        .margin(20) 
    } 
  } 
} 
 
@Entry 
@Component 
struct Index { 
  dialogController: CustomDialogController | null = new CustomDialogController({ 
    builder: CustomDialogExample({ 
      cancel: ()=> { this.onCancel() }, 
      confirm: ()=> { this.onAccept() } 
    }), 
    cancel: this.existApp, 
    autoCancel: true, 
    alignment: DialogAlignment.Center, 
    offset: { dx: 0, dy: -20 }, 
    gridCount: 2,//设置宽度 
    showInSubWindow: false, 
    isModal: true, 
    customStyle: false, 
    cornerRadius: 50,//设置圆角 
  }) 
  // 在自定义组件即将析构销毁时将dialogControlle置空 
  aboutToDisappear() { 
    this.dialogController = null // 将dialogController置空 
  } 
  onCancel() { 
    console.info('Callback when the first button is clicked') 
  } 
  onAccept() { 
    console.info('Callback when the second button is clicked') 
  } 
  existApp() { 
    console.info('Click the callback in the blank area') 
  } 
  build() { 
    Column() { 
      Button('click me') 
        .onClick(() => { 
          if (this.dialogController != null) { 
            this.dialogController.open() 
          } 
        }).backgroundColor(0x317aff) 
    }.width('100%').margin({ top: 5 }) 
  } 
}
分享
微博
QQ
微信
回复
2024-09-04 16:04:07
相关问题
promptAction.openCustomDialog 自定义弹窗
221浏览 • 1回复 待解决
promptAction.openCustomDialog 全局弹窗
220浏览 • 1回复 待解决
如何给自定义弹框加上圆角背景框
1910浏览 • 1回复 待解决
自定义弹窗自定义转场动画
860浏览 • 1回复 待解决
HarmonyOS 自定义键盘
116浏览 • 1回复 待解决