如何在自定义弹窗中再次弹窗

如何在自定义弹窗中再次弹窗


HarmonyOS
2024-03-17 12:49:25
1.2w浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
put_get

1. 通过@CustomDialog创建两个自定义弹窗。

2. 在页面上的Button按钮上设置点击事件,通过调用dialogController.open()方法打开弹窗1。

3. 在弹窗1的Button按钮上设置点击事件,通过dialogControllerTwo.open()方法打开第二个弹窗。

可参考示例代码:

@CustomDialog 
struct CustomDialogExampleTwo { 
  controllerTwo?: CustomDialogController; 
  build() { 
    Column() { 
      Text('我是第二个弹窗') 
        .fontSize(30) 
        .height(100) 
      Button('点我关闭第二个弹窗') 
        .onClick(() => { 
          if (this.controllerTwo != undefined) { 
            this.controllerTwo.close(); 
          } 
        }) 
        .margin(20) 
    } 
  } 
} 
 
@CustomDialog 
struct CustomDialogExample { 
  @Link textValue: string; 
  @Link inputValue: string; 
  dialogControllerTwo: CustomDialogController | null = new CustomDialogController({ 
    builder: CustomDialogExampleTwo(), 
    alignment: DialogAlignment.Bottom, 
    offset: { dx: 0, dy: -25 } }) 
  controller?: CustomDialogController 
  // 若尝试在CustomDialog中传入多个其他的Controller,以实现在CustomDialog中打开另一个或另一些CustomDialog,那么此处需要将指向自己的controller放在所有controller的后面 
  cancel: () => void = () => { 
  } 
  confirm: () => void = () => { 
  } 
  build() { 
    Column() { 
      Text('Change text').fontSize(20).margin({ top: 10, bottom: 10 }) 
      TextInput({ placeholder: '', text: this.textValue }).height(60).width('90%') 
        .onChange((value: string) => { 
          this.textValue = value; 
        }) 
      Text('Whether to change a text?').fontSize(16).margin({ bottom: 10 }) 
      Flex({ justifyContent: FlexAlign.SpaceAround }) { 
        Button('cancel') 
          .onClick(() => { 
            if (this.controller != undefined) { 
              this.controller.close(); 
              this.cancel(); 
            } 
          }).backgroundColor(0xffffff).fontColor(Color.Black) 
        Button('confirm') 
          .onClick(() => { 
            if (this.controller != undefined) { 
              this.inputValue = this.textValue; 
              this.controller.close(); 
              this.confirm(); 
            } 
          }).backgroundColor(0xffffff).fontColor(Color.Red) 
      }.margin({ bottom: 10 }) 
      Button('点我打开第二个弹窗') 
        .onClick(() => { 
          if (this.dialogControllerTwo != null) { 
            this.dialogControllerTwo.open(); 
          } 
        }) 
        .margin(20) 
    }.borderRadius(10) 
    // 如果需要使用border属性或cornerRadius属性,请和borderRadius属性一起使用。 
  } 
} 
 
@Entry 
@Component 
struct CustomDialogUser { 
  @State textValue: string = ''; 
  @State inputValue: string = 'click me'; 
  dialogController: CustomDialogController | null = new CustomDialogController({ 
    builder: CustomDialogExample({ 
      cancel: this.onCancel, 
      confirm: this.onAccept, 
      textValue: $textValue, 
      inputValue: $inputValue 
    }), 
    cancel: this.exitApp, 
    autoCancel: true, 
    alignment: DialogAlignment.Bottom, 
    offset: { dx: 0, dy: -20 }, 
    gridCount: 4, 
    customStyle: false, 
    backgroundColor: 0xd9ffffff, 
    cornerRadius: 10, 
  }) 
  // 在自定义组件即将析构销毁时将dialogController置空 
  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'); 
  } 
  exitApp() { 
    console.info('Click the callback in the blank area'); 
  } 
  build() { 
    Column() { 
      Button(this.inputValue) 
        .onClick(() => { 
          if (this.dialogController != null) { 
            this.dialogController.open(); 
          } 
        }).backgroundColor(0x317aff) 
    }.width('100%').margin({ top: 5 }) 
  } 
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 90.
  • 91.
  • 92.
  • 93.
  • 94.
  • 95.
  • 96.
  • 97.
  • 98.
  • 99.
  • 100.
  • 101.
  • 102.
  • 103.
  • 104.
  • 105.
  • 106.
  • 107.
  • 108.
  • 109.
  • 110.
  • 111.
  • 112.
  • 113.
  • 114.
  • 115.

详细内容可以参考:自定义弹窗

分享
微博
QQ
微信
回复
2024-03-17 22:24:37


相关问题
使用自定义弹窗实现分享弹窗
1111浏览 • 1回复 待解决
HarmonyOS 自定义弹窗如何更新弹窗的UI
583浏览 • 1回复 待解决
自定义弹窗自定义转场动画
1629浏览 • 1回复 待解决
自定义弹窗如何嵌套使用
2121浏览 • 1回复 待解决
HarmonyOS 如何封装自定义弹窗
583浏览 • 1回复 待解决
如何设置自定义弹窗位置
2474浏览 • 1回复 待解决
如何理解自定义弹窗的gridCount参数
2729浏览 • 1回复 待解决
HarmonyOS 自定义弹窗选择
974浏览 • 1回复 待解决
HarmonyOS 自定义弹窗CustomDialog
486浏览 • 1回复 待解决
HarmonyOS 如何设置自定义弹窗透明
542浏览 • 1回复 待解决
如何在全局实现一个自定义dialog弹窗
3289浏览 • 1回复 待解决
如何自定义popup弹窗的布局?
744浏览 • 2回复 待解决