HarmonyOS CustomDialog显示

在RootPage上弹出dialogA,然后dialogA中有按钮,点击跳转到SecondPage,但是这个时候dialogA仍然覆盖在SecondPage这能否解决?完整需求为在客户登录后,会检查客户账号的适当性信息,根据接口返回,进行dialog弹窗提示,然而用户不一定是在首页进行的登录,可能是在二三级页面进行的登录弹框内容中,可能会有跳转按钮,跳转到别页面时需要隐藏dialog,返回后仍然需要显示dialog。有比较好的解决方法吗?

HarmonyOS
2025-01-09 17:51:42
浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
fox280

想要实现Dialog跳转页面之后再返回Dialog不消失,可以使用Stack组件模拟实现Dialog的效果。参考示例如下:

import router from '@ohos.router';
@Entry
@Component
struct a {
  @State textValue: string = 'Hello World'
  // 显隐控制设置为不占用
  @State visible: Visibility = Visibility.None

  build() {
    // 使用stack可以实现假的dialog覆盖原页面上面
    Stack() {
      Row() {
        // 初始页面
        Column() {
          Text('Hello World')
            .fontSize(50)
            .fontWeight(FontWeight.Bold)
          // 触发dialog的地方
          Button('click')
            .onClick(() => {
              //用于检测点击事件是否透传到原来的页面,我测了一下是没有透传的,符合dialog规范
              console.log("hit me!")
              if (this.visible == Visibility.Visible) {
                this.visible = Visibility.None
              } else {
                this.visible = Visibility.Visible
              }
            })
            .backgroundColor(0x777474)
            .fontColor(0x000000)
        }
        .width('100%')
      }
      .height('100%')
      .backgroundColor(0x885555)

      Column() {
        // 这个可以调节对话框效果,栅格布局,xs,sm,md,lg分别为四种规格
        // 下面的breakpoints是用来区别当前属于哪个类型的断点
        // gridRow里的栅格数量为总数,gridCol里的就是偏移和假Dialog所占据的栅格数
        GridRow({
          columns:{xs:10 ,sm: 4, md: 8, lg: 12},
          breakpoints: { value: ["400vp", "600vp", "800vp"],
            reference: BreakpointsReference.WindowSize },
        })
        {
          GridCol({
            span:{xs:10 ,sm: 2, md: 4, lg: 8},
            offset:{xs:2,sm: 1, md: 2, lg: 2}
          }){

            // 这里放的就是原Dialog里的column里的东西,稍微改改应该就可以用了
            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.visible == Visibility.Visible) {
                      this.visible = Visibility.None
                    } else {
                      this.visible = Visibility.Visible
                    }

                  }).backgroundColor(0xffffff).fontColor(Color.Black)
                Button('jump')
                  .onClick(() => {
                    router.pushUrl({
                      url: 'pages/Index'
                    })
                  }).backgroundColor(0xffffff).fontColor(Color.Red)
              }.margin({ bottom: 10 })
            }
            .backgroundColor(0xffffff)
            .visibility(this.visible)
            .clip(true)
            .borderRadius(20)
          }
        }
      }.width('95%')//设置弹窗宽度
    }
  }
}
  • 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.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
分享
微博
QQ
微信
回复
2025-01-09 19:05:59
相关问题
HarmonyOS class中显示CustomDialog
661浏览 • 1回复 待解决
HarmonyOS CustomDialog显示顺序
595浏览 • 1回复 待解决
HarmonyOS 关于CustomDialog显示层级问题
626浏览 • 1回复 待解决
如何控制CustomDialog显示层级
1288浏览 • 1回复 待解决
HarmonyOS CustomDialog显示层级如何控制
579浏览 • 1回复 待解决
怎么判断customDialog是否正在显示
889浏览 • 1回复 待解决
HarmonyOS CustomDialog相关
626浏览 • 1回复 待解决
HarmonyOS @CustomDialog 调用 pushUrl
805浏览 • 1回复 待解决
HarmonyOS 关于CustomDialog使用
1091浏览 • 1回复 待解决
HarmonyOS CustomDialog焦点
435浏览 • 1回复 待解决
HarmonyOS CustomDialog中弹AlertDialog问题
875浏览 • 1回复 待解决
HarmonyOS customdialog使用问题
1532浏览 • 1回复 待解决
HarmonyOS CustomDialog位置问题
903浏览 • 1回复 待解决
HarmonyOS CustomDialog底部space
726浏览 • 1回复 待解决
HarmonyOS使用CustomDialog如何设置宽度
973浏览 • 1回复 待解决