鸿蒙UI开发之气泡提示(Popup)

Popup属性可绑定在组件上显示气泡弹窗提示,设置弹窗内容、交互逻辑和显示状态。主要用于屏幕录制、信息弹出提醒等显示状态。
气泡分为两种类型,一种是系统提供的气泡PopupOptions,一种是开发者可以自定义的气泡CustomPopupOptions。其中PopupOptions为系统提供的气泡,通过配置primaryButton、secondaryButton来设置带按钮的气泡,CustomPopupOptions通过配置builder参数来设置自定义的气泡。

文本提示气泡

文本提示气泡常用于只展示带有文本的信息提示,不带有任何交互的场景。Popup属性需绑定组件,当bindPopup属性中参数show为true的时候会弹出气泡提示。

在Button组件上绑定Popup属性,每次点击Button按钮,handlePopup会切换布尔值,当其为true时,触发bindPopup弹出气泡。

@Entry
@Component
struct PopupExample {
   
  @State handlePopup: boolean = false
 
  build() {
   
    Column() {
   
      Button('PopupOptions')
        .onClick(() => {
   
          this.handlePopup = !this.handlePopup
        })
        .bindPopup(this.handlePopup, {
   
          message: 'This is a popup with PopupOptions',
        })
    }.width('100%').padding({
    top: 5 })
  }
}

在这里插入图片描述

添加气泡状态变化的事件

通过onStateChange参数为气泡添加状态变化的事件回调,可以判断当前气泡的显示状态。

@Entry
@Component
struct PopupExample {
   
  @State handlePopup: boolean = false

  build() {
   
    Column() {
   
      Button('PopupOptions')
        .onClick(() => {
   
          this.handlePopup = !this.handlePopup
        })
        .bindPopup(this.handlePopup, {
   
          message: 'This is a popup with PopupOptions',
          onStateChange: (e)=> {
    // 返回当前的气泡状态
            if (!e.isVisible) {
   
              this.handlePopup = 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值