HarmonyOS 鸿蒙Next如何保证跳转下级页面时,保持弹窗视图在上级页面中存在?

发布于 1周前 作者 sinazl 来自 鸿蒙OS

HarmonyOS 鸿蒙Next如何保证跳转下级页面时,保持弹窗视图在上级页面中存在?

bindSheet或dialog等弹窗视图点击后不消失跳转到下级页面,返回后弹窗视图依旧存在

2 回复

实现当前场景目前有两个思路。 1.通过stack和自定义组件模拟一个弹窗,并通过visibility控制弹窗的显示和消失。

import router from '@ohos.router';
@Entry
[@Component](/user/Component)
struct First {
// 显隐控制设置为不占用
[@State](/user/State) visible: Visibility = Visibility.None
build() {
// 使用stack可以实现假的dialog覆盖原页面上面
Stack() {
Row() {
// 初始页面
Column() {
// 触发dialog的地方
Button('click').onClick(() => {
//用于检测点击事件是否透传到原来的页面,是符合dialog规范
console.log("hit me!")
if (this.visible == Visibility.Visible) {this.visible = Visibility.None}
else {this.visible = Visibility.Visible}
}).fontColor(0x000000)
}.width('100%')
}.height('100%')
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('Change text').fontSize(20).margin({ top: 10, 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/Page1' })}).backgroundColor(Color.Black).fontColor(Color.Red)
}.margin({ bottom: 10 })
}.backgroundColor(Color.Grey).visibility(this.visible).clip(true).borderRadius(20)
}
}
}.width('95%')//设置弹窗宽度
}
}
}

2.使用NavDestination的Dialog模式实现自定义弹窗


[@Component](/user/Component)
export struct PrivacyDialog {
[@Consume](/user/Consume)('pageInfo') pageStack : NavPathStack;
[@State](/user/State) isAgree: string = "Not Agree";

build() {
NavDestination(){
Stack({ alignContent: Alignment.Center }){
// 蒙层
Column() {
}
.width("100%")
.height("100%")
.backgroundColor('rgba(0,0,0,0.5)')
// 隐私弹窗
Column() {
Text("注册应用账号").fontSize(30).height('20%')
Text("请您仔细阅读一下协议并同意,我们将全力保护您的个人信息安全,您可以使用账号登录APP。").height('40%')
Divider()
Row(){
// 点击隐私条款,跳转到隐私条款页面,并接受隐私条款的返回值,用来刷新页面的同意状态。
Text("《应用隐私政策》").onClick(ent => {
let pathInfo : NavPathInfo = new NavPathInfo('PrivacyItem', null
, (popInfo: PopInfo) => {
this.isAgree = popInfo.result.toString();
})
this.pageStack.pushDestination(pathInfo, true)
})
Text(this.isAgree)
}.height('20%')
Divider()
// 点击同意不同意按钮,将状态返回登录页
Row(){
Button("不同意").onClick(ent => {
this.pageStack.pop("Not Agree", true)
}).width('30%')
Button("同意").onClick(ent => {
this.pageStack.pop("Agree", true)
}).width('30%')
}.height('20%')
}.backgroundColor(Color.White)
.height('50%')
.width('80%')
}
}.hideTitleBar(true)
// 设置Dialog类型
.mode(NavDestinationMode.DIALOG)
}
}

更多关于HarmonyOS 鸿蒙Next如何保证跳转下级页面时,保持弹窗视图在上级页面中存在?的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html


在HarmonyOS鸿蒙Next中,若需保证跳转下级页面时保持弹窗视图在上级页面中存在,可利用页面栈管理和自定义弹窗组件的显示逻辑来实现。

具体而言,弹窗视图应作为上级页面的子视图进行管理,而非作为全局视图。在上级页面中,通过自定义弹窗组件控制其显示与隐藏。当触发跳转到下级页面时,不销毁上级页面的弹窗视图,仅将下级页面推入页面栈。

实现步骤如下:

  1. 自定义弹窗组件:在上级页面中定义弹窗组件,并控制其显示逻辑。

  2. 页面跳转:使用页面跳转API(如Intent)将下级页面推入页面栈,同时确保上级页面不被销毁。

  3. 弹窗视图保持:由于弹窗视图是上级页面的子视图,下级页面不会干扰其显示状态。上级页面在后台时,弹窗视图的状态由上级页面自身管理。

  4. 返回上级页面:从下级页面返回时,上级页面及其弹窗视图将恢复显示状态。

此方案依赖于鸿蒙系统的页面生命周期管理和视图层级机制,确保在页面跳转过程中弹窗视图的存在与状态保持。

如果问题依旧没法解决请联系官网客服,官网地址是:https://www.itying.com/category-93-b0.html

回到顶部