ts-methods-custom-dialog-box.md 7.9 KB
Newer Older
Z
zengyawen 已提交
1 2
# 自定义弹窗

3
通过CustomDialogController类显示自定义弹窗。使用弹窗组件时,可优先考虑自定义弹窗,便于自定义弹窗的样式与内容。
4

H
geshi  
HelloCrease 已提交
5
> **说明:**
6
>
Z
zengyawen 已提交
7
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
Z
zengyawen 已提交
8

Z
zengyawen 已提交
9 10


Z
zengyawen 已提交
11 12 13

## 接口

14
CustomDialogController(value:{builder: CustomDialog, cancel?: () => void, autoCancel?: boolean, alignment?: DialogAlignment, offset?: Offset, customStyle?: boolean, gridCount?: number, maskColor?: ResourceColor, maskRect?: Rectangle, openAnimation?: AnimateParam, closeAniamtion?: AnimateParam, showInSubWindow?: boolean, backgroundColor?:ResourceColor, cornerRadius?:Dimension \| BorderRadiuses})
Z
zengyawen 已提交
15

16 17
**参数:**

H
HelloCrease 已提交
18 19 20 21 22 23 24 25
| 参数名                           | 参数类型                                     | 必填   | 参数描述                                     |
| ----------------------------- | ---------------------------------------- | ---- | ---------------------------------------- |
| builder                       | CustomDialog                             | 是    | 自定义弹窗内容构造器。                              |
| cancel                        | () => void                  | 否    | 点击遮障层退出时的回调。                             |
| autoCancel                    | boolean                                  | 否    | 是否允许点击遮障层退出。<br>默认值:true                 |
| alignment                     | [DialogAlignment](ts-methods-alert-dialog-box.md#dialogalignment枚举说明) | 否    | 弹窗在竖直方向上的对齐方式。<br>默认值:DialogAlignment.Default |
| offset                        | [Offset](ts-types.md#offset)             | 否    | 弹窗相对alignment所在位置的偏移量。                   |
| customStyle                   | boolean                                  | 否    | 弹窗容器样式是否自定义。<br>默认值:false,弹窗容器的宽度根据栅格系统自适应,不跟随子节点;高度自适应子节点,最大为窗口高度的90%;圆角为24vp。 |
26
| gridCount<sup>8+</sup>        | number                                   | 否    | 弹窗宽度占[栅格宽度](../../ui/arkts-layout-development-grid-layout.md)的个数。<br>默认为按照窗口大小自适应,异常值按默认值处理,最大栅格数为系统最大栅格数。 |
H
HelloCrease 已提交
27
| maskColor<sup>10+</sup>       | [ResourceColor](ts-types.md#resourcecolor) | 否    | 自定义蒙层颜色。<br>默认值: 0x33000000              |
28
| maskRect<sup>10+</sup>        | [Rectangle](ts-methods-alert-dialog-box.md#rectangle10类型说明) | 否     | 弹窗遮蔽层区域,在遮蔽层区域内的事件不透传,在遮蔽层区域外的事件透传。<br/>默认值:{ x: 0, y: 0, width: '100%', height: '100%' } |
29 30
| openAnimation<sup>10+</sup>   | [AnimateParam](ts-explicit-animation.md#animateparam对象说明) | 否    | 自定义设置弹窗弹出的动画效果相关参数。<br>**说明**<br>iterations默认值为1,默认播放一次,设置为其他数值时按默认值处理。<br>playMode控制动画播放模式,默认值为PlayMode.Normal,设置为其他数值时按照默认值处理。 |
| closeAniamtion<sup>10+</sup>  | [AnimateParam](ts-explicit-animation.md#animateparam对象说明) | 否    | 自定义设置弹窗关闭的动画效果相关参数。<br>**说明**<br>iterations默认值为1,默认播放一次,设置为其他数值时按默认值处理。<br>playMode控制动画播放模式,默认值为PlayMode.Normal,设置为其他数值时按照默认值处理。                    |
31
| showInSubWindow<sup>10+</sup> | boolean                                  | 否    | 某弹框需要显示在主窗口之外时,是否在子窗口显示此弹窗。<br>默认值:false,在子窗口不显示弹窗。<br>**说明**:showInSubWindow为true的弹窗无法触发显示另一个showInSubWindow为true的弹窗。 |
T
tengfan 已提交
32
| backgroundColor<sup>10+</sup> | [ResourceColor](ts-types.md#resourcecolor)      | 否   | 设置弹窗背板填充。                                           |
T
tengfan 已提交
33
| cornerRadius<sup>10+</sup>    | [BorderRadiuses](ts-types.md#borderradiuses9) \| [Dimension](ts-types.md#dimension10) | 否   | 设置背板的圆角半径。<br />可分别设置4个圆角的半径。<br />默认值:{ topLeft: '24vp', topRight: '24vp', bottomLeft: '24vp', bottomRight: '24vp' }<br />**说明**:自定义弹窗默认的背板圆角半径为24vp,如果需要使用cornerRadius属性,请和[borderRadius](ts-universal-attributes-border.md)属性一起使用。 |
Z
zengyawen 已提交
34

35
## CustomDialogController
Z
zengyawen 已提交
36

37
### 导入对象
Z
zengyawen 已提交
38

39
```ts
Z
zengyawen 已提交
40 41
dialogController : CustomDialogController = new CustomDialogController(value:{builder: CustomDialog, cancel?: () => void, autoCancel?: boolean})
```
H
houhaoyu 已提交
42
**说明**:CustomDialogController仅在作为@CustomDialog和@Component struct的成员变量,且在@Component struct内部定义时赋值才有效,具体用法可看下方示例。
Z
zengyawen 已提交
43

44 45
### open()
open(): void
Z
zengyawen 已提交
46

Z
zengyawen 已提交
47

M
makangcheng 已提交
48
显示自定义弹窗内容,允许多次使用,但如果弹框为SubWindow模式,则该弹框不允许再弹出SubWindow弹框。
Z
zengyawen 已提交
49

Z
zengyawen 已提交
50

51 52
### close
close(): void
Z
zengyawen 已提交
53

Z
zengyawen 已提交
54 55 56

关闭显示的自定义弹窗,若已关闭,则不生效。

Z
zengyawen 已提交
57 58

## 示例
Z
zengyawen 已提交
59

H
geshi  
HelloCrease 已提交
60 61
```ts
// xxx.ets
Z
zengyawen 已提交
62 63
@CustomDialog
struct CustomDialogExample {
T
tianyu 已提交
64 65
  @Link textValue: string
  @Link inputValue: string
Z
zengyawen 已提交
66
  controller: CustomDialogController
M
makangcheng 已提交
67
  // 若尝试在CustomDialog中传入多个其他的Controller,以实现在CustomDialog中打开另一个或另一些CustomDialog,那么此处需要将指向自己的controller放在最后
Z
zengyawen 已提交
68 69 70 71 72
  cancel: () => void
  confirm: () => void

  build() {
    Column() {
T
tianyu 已提交
73 74 75 76 77 78
      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 })
Z
zengyawen 已提交
79 80 81 82 83 84 85 86
      Flex({ justifyContent: FlexAlign.SpaceAround }) {
        Button('cancel')
          .onClick(() => {
            this.controller.close()
            this.cancel()
          }).backgroundColor(0xffffff).fontColor(Color.Black)
        Button('confirm')
          .onClick(() => {
T
tianyu 已提交
87
            this.inputValue = this.textValue
Z
zengyawen 已提交
88 89 90 91
            this.controller.close()
            this.confirm()
          }).backgroundColor(0xffffff).fontColor(Color.Red)
      }.margin({ bottom: 10 })
T
tengfan 已提交
92
    }.borderRadius(10)
T
tengfan 已提交
93
    // 如果需要使用border属性或cornerRadius属性,请和borderRadius属性一起使用。
Z
zengyawen 已提交
94 95 96 97 98 99
  }
}

@Entry
@Component
struct CustomDialogUser {
T
tianyu 已提交
100 101
  @State textValue: string = ''
  @State inputValue: string = 'click me'
Z
zengyawen 已提交
102
  dialogController: CustomDialogController = new CustomDialogController({
M
match 已提交
103 104 105 106 107 108
    builder: CustomDialogExample({
      cancel: this.onCancel,
      confirm: this.onAccept,
      textValue: $textValue,
      inputValue: $inputValue
    }),
Z
zengyawen 已提交
109
    cancel: this.existApp,
M
match 已提交
110
    autoCancel: true,
Y
yamila 已提交
111
    alignment: DialogAlignment.Bottom,
M
match 已提交
112 113
    offset: { dx: 0, dy: -20 },
    gridCount: 4,
T
tengfan 已提交
114 115 116
    customStyle: false,
    backgroundColor: 0xd9ffffff,
    cornerRadius: 10,
Z
zengyawen 已提交
117 118
  })

Y
yamila 已提交
119
  // 在自定义组件即将析构销毁时将dialogControlle删除和置空
Z
zhaoxinyu 已提交
120
  aboutToDisappear() {
Y
yamila 已提交
121 122
    delete this.dialogController, // 删除dialogController
    this.dialogController = undefined // 将dialogController置空
Z
zhaoxinyu 已提交
123 124
  }

Z
zengyawen 已提交
125 126 127
  onCancel() {
    console.info('Callback when the first button is clicked')
  }
M
match 已提交
128

Z
zengyawen 已提交
129 130 131
  onAccept() {
    console.info('Callback when the second button is clicked')
  }
M
match 已提交
132

Z
zengyawen 已提交
133 134 135 136 137 138
  existApp() {
    console.info('Click the callback in the blank area')
  }

  build() {
    Column() {
T
tianyu 已提交
139
      Button(this.inputValue)
Z
zengyawen 已提交
140
        .onClick(() => {
Z
zhaoxinyu 已提交
141 142 143
          if (this.dialogController != undefined) {
            this.dialogController.open()
          }
Z
zengyawen 已提交
144 145 146 147 148 149
        }).backgroundColor(0x317aff)
    }.width('100%').margin({ top: 5 })
  }
}
```

T
tengfan 已提交
150
![zh-cn_image_custom](figures/zh-cn_image_custom.gif)