HarmonyOS 弹窗的样式能否支持自定义

需要实现一个下拉弹窗的功能,弹窗在宽度上需要为屏幕的宽度。自定义弹窗、popup、菜单的弹窗宽度最大化,距离屏幕也会有一定间距。弹窗的样式是否可以自定义?

HarmonyOS
2024-12-20 16:40:03
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Excelsior_abit

自定义弹窗 (CustomDialog)中的customStyle属性置为true时,弹窗宽度可以达到最大化示例如下:

// xxx.ets
import { ResizeDirection } from '@kit.TestKit'

@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).backgroundColor(0x300aff)
    // 如果需要使用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: true,
    cornerRadius: 10,
  })

  // 在自定义组件即将析构销毁时将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')
  }

  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 })
  }
}
分享
微博
QQ
微信
回复
2024-12-20 18:58:02
相关问题
HarmonyOS 是否支持自定义升级弹窗
233浏览 • 1回复 待解决
HarmonyOS 自定义Slider样式
783浏览 • 1回复 待解决
自定义弹窗自定义转场动画
1498浏览 • 1回复 待解决
弹窗打开、关闭动画是否支持自定义
2789浏览 • 1回复 待解决
HarmonyOS 自定义弹窗问题
1218浏览 • 1回复 待解决
HarmonyOS 如何自定义 toast 样式
527浏览 • 1回复 待解决
HarmonyOS Refresh自定义刷新样式
418浏览 • 1回复 待解决
HarmonyOS CheckBox 自定义样式问题
449浏览 • 1回复 待解决
HarmonyOS 如何自定义Toggle样式
309浏览 • 1回复 待解决
HarmonyOS 自定义弹窗选择
841浏览 • 1回复 待解决
HarmonyOS 自定义弹窗如何更新弹窗UI
462浏览 • 1回复 待解决
HarmonyOS 自定义弹窗CustomDialog
364浏览 • 1回复 待解决
CounterComponent样式是否可以自定义
579浏览 • 1回复 待解决
HarmonyOS 全局自定义弹窗实现
457浏览 • 1回复 待解决