封装自定义组件,快速实现HarmonyOS Next系统下的统一弹窗解决方案 原创

翻生咸鱼
发布于 2025-3-31 20:08
1592浏览
0收藏

弹窗是应用开发中使用的非常多的一个组件,为了统一设计和整体美观的目的,弹窗往往会使用一套设计统一,交互相近的设计方案。如果每个弹窗都手动创建的话,需要消耗开发者大量的精力,为了能够快速开发不同的弹窗方案,我们可以尝试在开发初期就构建一个底层的弹窗逻辑。

弹窗效果如下:
封装自定义组件,快速实现HarmonyOS Next系统下的统一弹窗解决方案-鸿蒙开发者社区

封装自定义组件,快速实现HarmonyOS Next系统下的统一弹窗解决方案-鸿蒙开发者社区

简单分析可以发现,弹窗的设计是相似的,相同背景的基础上增加一个图标,一行文字和两个按钮。
因此这里可以开发一个通用的底层组件来搭建弹窗的基本架构。

代码如下:

/**
 * 标准弹窗使用的统一设计
 */
@Component
export struct dialogDesign {
  @State imageUrl: Resource = $r("app.media.icon_dialog_cardDesignRetain")//顶部的悬浮图标
  @Prop Title: string//弹窗中显示的文本
  @Prop cancelText: string//取消按钮的文本
  @Prop acceptText: string//确认按钮的文本
  cancelAction: () => void = () => {
  }//取消按钮的点击事件
  acceptAction: () => void = () => {
  }//确认按钮的点击事件

  build() {
    Column() {
      Stack() {
        Column() {
          Text() {
            Span(this.Title)//弹窗显示的文本
              .fontColor($r('app.color.textColor'))
              .fontSize(12)
          }
          .margin({ top: 35, bottom: 20 })
          .padding({ left: 8, right: 8 })

          Flex({ justifyContent: FlexAlign.SpaceAround }) {
            Button(this.cancelText)//左侧的取消按钮
              .type(ButtonType.Normal)// .borderRadius(20)
              .height(45)
              .width(130)// .backgroundColor('#000000')
              .backgroundColor('rgba(0,0,0,0)')
              .border({ width: 1, color: $r('app.color.remarkTextColor'), radius: 20 })
              .fontColor($r('app.color.remarkTextColor'))
              .fontSize(12)
              .onClick(() => {
                this.cancelAction()
              })
            Button(this.acceptText)//右侧的确认按钮
              .type(ButtonType.Normal)
              .borderRadius(20)
              .height(45)
              .width(130)
              .backgroundColor($r('app.color.ButtonBackgroundColor02'))
              .fontColor($r('app.color.textColor04'))
              .fontSize(12)

              .onClick(() => {
                this.acceptAction()
              })
          }.margin({ bottom: 20 })
        }
        .borderRadius(20)

        Image(this.imageUrl)//顶部的悬浮图标
          .height($r('app.integer.dialogIconSize'))
          .width($r('app.integer.dialogIconSize'))
          .offset({ y: $r('app.integer.dialogIconYMovie') })
      }
      .align(Alignment.Top)
      .width('80%')
      .borderRadius(20)
      .linearGradient({
        angle: 180,
        colors: [[$r('app.color.cardColor_Start'), 0], [$r('app.color.cardColor_End'), 1]]
      })
      .backgroundImagePosition(Alignment.Center)
      .backgroundImageSize(ImageSize.Cover)
    }
    .backgroundColor($r('app.color.masksColor'))
    .justifyContent(FlexAlign.Center)
    .height('100%')
    .width('100%')
    .onClick(() => {
      this.cancelAction()
    })
  }
}
  • 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.

封装了底层结构以后,我们就可以通过非常简单的代码复用,快速开发不同的弹窗。


/**
 * 广告看了一部分,但还没拿到的时候退出给的弹窗
 */
@Component
export struct dialog_returnButAdNoReady {
  @Link showReturnButAdNoReadyDialog: boolean//使用link来控制弹窗是否显示
  build() {
    dialogDesign({
      Title: '马上就要获得壁纸了,退出广告将重新统计',
      cancelText: '返回',
      cancelAction: () => {
	//点击取消按钮的事件
      	...
	this.showReturnFromCardDesignDialog = false
      },
      acceptText: '确认退出',
      acceptAction: () => {
	//点击确认按钮的事件
	...     
	this.showReturnFromCardDesignDialog = false
      }
    })
  }
}
  • 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.
/**
 * 退出卡片编辑页时的弹窗
 */
@Component
@Preview
export struct dialog_returnFromCardDesign {
  @Link showReturnFromCardDesignDialog: boolean
  build() {
    dialogDesign({
      Title: '你的组件还未保存,确认要返回嘛?',
      cancelText: '返回',
      cancelAction: () => {
	//点击取消按钮的事件
      	...
	this.showReturnFromCardDesignDialog = false
      },
      acceptText: '确认退出',
      acceptAction: () => {
	//点击确认按钮的事件
	...      
	this.showReturnFromCardDesignDialog = false
      }
    })
  }
}

  • 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.

运行效果如下:

封装自定义组件,快速实现HarmonyOS Next系统下的统一弹窗解决方案-鸿蒙开发者社区

©著作权归作者所有,如需转载,请注明出处,否则将追究法律责任
已于2025-3-31 20:23:34修改
收藏
回复
举报


回复
    相关推荐