HarmonyOS @CustomDialog 调用 pushUrl

@CustomDialog修饰过的自定义dialog,跳转页面后,弹框自动关闭了

再次购买弹框,点击再次购买的商品,页面跳转到商详页面,然后返回发现再次购买的弹框自动关闭了,应该是调动pushUrl后弹框就自己关闭了,但是没有调用close方法,问下有何方法可以让弹框不关闭。


HarmonyOS
2024-10-22 11:18:17
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang

可以使用Stack组件模拟实现Dialog的效果,页面跳转之后返回,可以做到Dialog依然显示的效果,

demo:

// Index.ets

// 导入页面路由模块  
import router from '@ohos.router';  
  
@Entry  
@Component  
struct First {  
  @State textValue: string = '输入'  
  // 显隐控制设置为不占用  
  @State visible: Visibility = Visibility.Visible  
  
  build() {  
    // 使用stack可以实现假的dialog覆盖原页面上面  
    Stack() {  
      Row() {  
        // 初始页面  
        Column() {  
          Text('我是第一个页面')  
            .fontSize(30)  
            .fontWeight(FontWeight.Bold)  
          // 触发dialog的地方  
          Button('按钮')  
            .onClick(() => {  
              //用于检测点击事件是否透传到原来的页面,我测了一下是没有透传的,符合dialog规范  
              console.log("hit me!")  
              if (this.visible == Visibility.Visible) {  
                this.visible = Visibility.None  
              } else {  
                this.visible = Visibility.Visible  
              }  
            })  
            .backgroundColor(0x777474)  
            .fontColor(0x000000)  
        }  
        .height('100%')  
        .width('100%')  
        .justifyContent(FlexAlign.Start)  
        .alignItems(HorizontalAlign.Center)  
      }  
      .height('100%')  
      .backgroundColor('#FFF')  
      //这里开始是构造弹窗效果主要需要修改的地方,首先是加了一个半透明灰色的蒙层效果  
      Text('')  
        .onClick(() => {  
          if (this.visible == Visibility.Visible) {  
            this.visible = Visibility.None  
          } else {  
            this.visible = Visibility.Visible  
          }  
        })  
        .width('100%')  
        .height('100%')  
          // 透明度可以自己调节一下  
        .opacity(0.5)  
        .backgroundColor(Color.Black)  
        .visibility(this.visible)  
  
      Column() {  
        // 这个可以调节对话框效果,栅格布局,xs,sm,md,lg分别为四种规格  
        // 下面的breakpoints是用来区别当前属于哪个类型的断点  
        // gridRow里的栅格数量为总数,gridCol里的就是偏移和假Dialog所占据的栅格数  
        GridRow({  
          columns:{xs:1 ,sm: 4, md: 8, lg: 12},  
          breakpoints: { value: ["400vp", "600vp", "800vp"],  
            reference: BreakpointsReference.WindowSize },  
        })  
        {  
          GridCol({  
            span:{xs:1 ,sm: 2, md: 4, lg: 8},  
            offset:{xs:0 ,sm: 1, md: 2, lg: 2}  
          })  
  
          {  
  
            // 这里放的就是原Dialog里的column里的东西,稍微改改应该就可以用了  
            Column() {  
              Text('安全隐私').fontSize(20).margin({ top: 10, bottom: 10 })  
              Text('是否跳转到隐私详情页面?').fontSize(16).margin({ bottom: 10 })  
              Flex({ justifyContent: FlexAlign.SpaceAround }) {  
                Button('取消')  
                  .onClick(() => {  
                    if (this.visible == Visibility.Visible) {  
                      this.visible = Visibility.None  
                    } else {  
                      this.visible = Visibility.Visible  
                    }  
  
                  }).backgroundColor(0xffffff).fontColor(Color.Black)  
                Button('确定')  
                  .onClick(() => {  
                    router.pushUrl({  
                      url: 'pages/Second'  
                    })  
                  }).backgroundColor(0xffffff).fontColor(Color.Red)  
              }.margin({ bottom: 10 })  
            }  
            .backgroundColor(0xffffff)  
            .visibility(this.visible)  
            .clip(true)  
            .borderRadius(20)  
          }  
        }  
      }.width('95%')//设置弹窗宽度  
    }  
  }  
}

// Second.ets

// 导入页面路由模块  
import router from '@ohos.router';  
  
@Entry  
@Component  
struct Second {  
  @State message: string = '隐藏协议详情页面'  
  
  build() {  
    Row() {  
      Column() {  
        Text(this.message)  
          .fontSize(40)  
          .fontWeight(FontWeight.Bold)  
        Button() {  
          Text('Back')  
            .fontSize(25)  
            .fontWeight(FontWeight.Bold)  
        }  
        .type(ButtonType.Capsule)  
        .margin({  
          top: 20  
        })  
        .backgroundColor('#0D9FFB')  
        .width('40%')  
        .height('5%')  
        // 返回按钮绑定onClick事件,点击按钮时返回到第一页  
        .onClick(() => {  
          console.info(`成功点击返回按钮.`)  
          try {  
            // 返回第一页  
            router.back()  
            console.info('成功返回到第一个页面.')  
          } catch (err) {  
            console.error(`未能成功返回到第一个页面.Code is ${err.code}, message is ${err.message}`)  
          }  
        })  
      }  
      .width('100%')  
    }  
    .height('100%')  
  }  
}
分享
微博
QQ
微信
回复
2024-10-22 18:19:05
相关问题
HarmonyOS router pushUrl报错
460浏览 • 1回复 待解决
HarmonyOS router.pushUrl跳转报100002
424浏览 • 1回复 待解决
HarmonyOS 关于CustomDialog使用
259浏览 • 1回复 待解决
HarmonyOS CustomDialog中弹AlertDialog问题
273浏览 • 1回复 待解决
HarmonyOS customdialog使用问题
372浏览 • 1回复 待解决
HarmonyOS CustomDialog位置问题
225浏览 • 1回复 待解决
HarmonyOS使用CustomDialog如何设置宽度
424浏览 • 1回复 待解决
HarmonyOS 使用customdialog不弹出
267浏览 • 1回复 待解决
HarmonyOS CustomDialog底部默认间距
261浏览 • 1回复 待解决
HarmonyOS 自定义弹窗CustomDialog问题
454浏览 • 1回复 待解决
HarmonyOSCustomDialog自定义Dialog
169浏览 • 1回复 待解决
customDialog焦点透传
772浏览 • 1回复 待解决
router.pushUrl 无法使用Map类型参数
383浏览 • 1回复 待解决
HarmonyOS 自定义弹窗 (CustomDialog)问题
202浏览 • 1回复 待解决
如何控制CustomDialog显示层级
542浏览 • 1回复 待解决
CustomDialog自定义动画
321浏览 • 1回复 待解决