民工心事 发表于 2024-11-6 12:03:16

鸿蒙(HarmonyOS)常见的三种弹窗方式

最近有一个想法,做一个针对鸿蒙官方API的工具箱项目,介绍常用的控件,以及在项目中如何使用,今天介绍Harmony中如何实现弹窗功能。
警告弹窗

警告弹窗是一个App中非常常用的弹窗,比方:


[*]删除一条记载,提示一下用户:您确定要删除吗?
[*]在App首页,点击返回时,提示一下用户:您确定要退出App吗?
使用AlertDialog.show方法举行弹窗,这个方法支持传入以下三个类中的恣意一个对象


[*]AlertDialogParamWithConfirm
[*]AlertDialogParamWithButtons
[*]AlertDialogParamWithOptions
以AlertDialogParamWithButtons对象举行说明,下面表格介绍常用属性:
参数名参数类型必填参数描述titleResourceStr否弹窗标题messageResourceStr是弹窗内容autoCancelboolean否点击遮障层时,是否关闭弹窗。默认值:trueprimaryButton{value: ResourceStr,fontColor?: ResourceColor,backgroundColor?: ResourceColor,action: () => void;}否按钮的文本内容、文本色、按钮背景致和点击回调secondaryButton{value: ResourceStr,fontColor?: ResourceColor,backgroundColor?: ResourceColor,action: () => void;}否按钮的文本内容、文本色、按钮背景致和点击回调cancel() => void否点击遮障层关闭dialog时的回调alignmentDialogAlignment否弹窗在竖直方向上的对齐方式。默认值:DialogAlignment.Default 接下来,我们用代码来实现一下:
AlertDialog.show({
    title:"弹窗标题",
    message:"这是弹窗内容",
    autoCancel:true,//点击遮障层时,是否关闭弹窗。默认值:true
    alignment: DialogAlignment.Center,//弹窗在竖直方向上的对齐方式。默认值:DialogAlignment.Default
    primaryButton: {
      value: "取消",
      fontColor: '#181818',
      action: () => {
            AppUtil.showToast("点击了取消按钮");
      }
    },
    secondaryButton: {
      value: "确定",
      fontColor: $r('app.color.mainColor'),
      action: () => {
            AppUtil.showToast("点击了确定按钮");
      }
    },
    cornerRadius:12,//弹窗边框弧度
    width:'80%', //弹窗宽度
    cancel:()=>{
      AppUtil.showToast("点击遮障层关闭dialog时的回调");
    }
})
结果图:
https://i-blog.csdnimg.cn/direct/cf7a137889c64213a6ec968906481bf4.jpeg#pic_left 参考官方链接:
   https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V2/ts-methods-alert-dialog-box-0000001478341185-V2
自界说弹窗

自界说弹窗相比警告弹窗更为灵活,支持自界说弹窗的样式与内容。
自界说弹窗的参数:

参数名参数类型必填参数描述builderCustomDialog是自界说弹窗内容构造器。cancel() => void否点击遮障层退出时的回调。autoCancelboolean否是否答应点击遮障层退出。默认值:truealignmentDialogAlignment否弹窗在竖直方向上的对齐方式。默认值:DialogAlignment.DefaultoffsetOffset否弹窗相对alignment所在位置的偏移量。customStyleboolean否弹窗容器样式是否自界说。默认值:false,弹窗容器的宽度根据栅格系统自适应,不跟随子节点;高度自适应子节点,最大为窗口高度的90%;圆角为24vp。gridCount8+number否弹窗宽度占栅格宽度的个数。默以为按照窗口巨细自适应,异常值按默认值处理,最大栅格数为系统最大栅格数。 代码实现
我们使用自界说弹窗实现隐私政策弹窗,新建PrivacyPolicyDialogBackUp类,也就是内容构造器,使用@CustomDialog修饰,内部有一个属性controller: CustomDialogController,这些都是常规写法,然后在build中实现界面布局。
@CustomDialog
export default struct PrivacyPolicyDialogBackUp{
    controller: CustomDialogController

    cancel!: () => void
    confirm!: () => void

    build() {
      Column() {
            Text($r('app.string.simple_user_policy')).fontSize(18).fontColor($r('app.color.title_color')).margin({ top: 30, bottom: 19 })

            Scroll(){
                Text(){
                  Span($r('app.string.privacy_policy_start'))
                  Span($r('app.string.user_agreement_two')).fontColor($r('app.color.mainColor')).onClick(() => {
                        this.openWebUrl("/useragreement.html");
                  })
                  Span($r('app.string.and'))
                  Span($r('app.string.privacy_policy_two')).fontColor($r('app.color.mainColor')).onClick(() => {
                        this.openWebUrl("/privacypolicy.html");
                  })
                  Span($r('app.string.simple_privacy_policy'))
                }.fontSize(16).fontColor($r('app.color.body_color')).margin({
                  left:25,
                  right:25
                })
            }.height(120)

            Column(){
                Button($r('app.string.disagree_privacy_policy')).onClick(() => {
                  this.controller.close();
                  this.cancel();
                }).fontColor($r('app.color.other_color')).fontSize(15).backgroundColor(Color.Transparent)

                Button($r('app.string.agree_privacy_policy')).onClick(() => {
                  this.controller.close();
                  this.confirm();
                }).fontColor($r('app.color.white')).fontSize(17)
                  .linearGradient({
                        direction: GradientDirection.Right, colors:[[$r('app.color.start_main_color'),0.0],[$r('app.color.end_main_color'),1.0]]
                  }).width('80%').margin({
                  top:15,bottom:21
                }).borderRadius(24)
            }
      }
    }

    openWebUrl(urlSuffix:string){
      let url= AppConstant.URL+urlSuffix;
      logger.info("url:"+url)
      router.pushUrl({
            url: Pages.WebViewPage,
            params:{
                data1: 'message',
                url: url,// 传递的 URL 参数
            }
      }, router.RouterMode.Single)
    }
}
在组件中创建CustomDialogController实例,指定builder属性,就是上面写的内容构造器
privacyPolicyDialog: CustomDialogController = new CustomDialogController({
builder: PrivacyPolicyDialog({
    cancel:this.onCancel.bind(this),
    confirm:this.onAgree.bind(this)
}),
alignment: DialogAlignment.Default,// 可设置dialog的对齐方式,设定显示在底部或中间等,默认为底部显示
cornerRadius:13,
autoCancel:false
})
体现弹窗
this.privacyPolicyDialog.open();
关闭弹窗
this.privacyPolicyDialog.close();
结果图:
https://i-blog.csdnimg.cn/direct/bc9e4cb70dec44c6a7d4244b95fbe400.jpeg#pic_left 参考官方链接:
   https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V2/ts-methods-custom-dialog-box-0000001477981237-V2
加载中弹窗

加载中弹窗弹窗其实就是自界说弹窗实现,只是内容构造器不一样而已,给Image组件设置animation动画,无穷循环图片
@CustomDialog
export default struct LoadingDialog {
    controller: CustomDialogController

    private loadingText: string|Resource = "加载中..."
    @State angle:number = 10

    aboutToAppear(){
      setTimeout(()=>{
            this.angle = 1440 // 设定一个大的旋转角度,确保动画执行
      },100)
    }

    build() {
      Column(){
            Image($r('app.media.icon_loading_3'))
                .width(70)
                .height(70)
                .rotate({angle:this.angle})
                .animation({
                  duration: 5000,
                  curve: Curve.Linear,
                  delay: 0,
                  iterations: -1, // 设置-1表示动画无限循环
                  playMode: PlayMode.Normal
                })


            Text(this.loadingText).fontSize(14).fontColor(0xffffff).margin({top:10})
      }.backgroundColor(0x88000000).borderRadius(10).padding({
            left:20,right:20,top:10,bottom:10
      })
    }
}
结果图:
https://i-blog.csdnimg.cn/direct/3a61151724eb40519a122da12d3cbe8c.gif 源码下载:

   https://github.com/ansen666/harmony_tools
如果您想第一时间看我的后期文章,扫码关注公众号
      安辉编程笔记 - 开发技术分享
             扫描二维码加关注
https://img-blog.csdn.net/20170920171642568

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: 鸿蒙(HarmonyOS)常见的三种弹窗方式