HarmonyOS CustomDialog中backgroundColor无法设置透明颜色

CustomDialog希望通过backgroundColor设置透明展示特殊弹框样式,结果无效

普通模式下是灰色,深色模式下是黑色,无法达到想要的效果

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
aquaa

目前CustomDialog设置透明就是backgroundColor: 'rgba(0,0,0,0)',如果不能满足要求,可以尝试使用navigation的方式 ,NavDestination支持Dialog类型页面: NavDestinationMode.DIALOG: 默认透明,具体可参考下面demo,看能否满足需求:

【Page6253.ets】

@Component
struct Page6253 {

  @Consume('pageInfos') pageInfos: NavPathStack;

  build() {
    NavDestination() {
      Button('push Page01')
        .width('80%')
        .onClick(() => {
          this.pageInfos.pushPathByName('Page6253', '');
        })
        .margin({top: 10, bottom: 10})
      Button('push Dialog01')
        .width('80%')
        .onClick(() => {
          this.pageInfos.pushPathByName('Dialog01', '');
        })
        .margin({top: 10, bottom: 10})
    }
    .title('Page01')
  }
}

@Component
struct Dialog01 {

  @Consume('pageInfos') pageInfos: NavPathStack;

  build() {
    NavDestination() {
      Stack() {
        Column()
          .width('100%')
          .height('100%')
          .backgroundColor(Color.Gray)
          .opacity(0.1)
          .onClick(() => {
            this.pageInfos.pop();
          })
        // Add controls for business processing
        Column() {
          Text('Dialog01')
            .fontSize(30)
            .fontWeight(2)
          Button('push Page01')
            .width('80%')
            .onClick(() => {
              this.pageInfos.pushPathByName('Page6253', '');
            })
            .margin({top: 10, bottom: 10})
          Button('push Dialog01')
            .width('80%')
            .onClick(() => {
              this.pageInfos.pushPathByName('Page6253', '');
            })
            .margin({top: 10, bottom: 10})
          Button('pop')
            .width('80%')
            .onClick(() => {
              this.pageInfos.pop();
            })
            .margin({top: 10, bottom: 10})
        }
        .padding(10)
        .width(250)
        // .backgroundColor(Color.White)
        .borderRadius(10)
      }
    }
    // .backgroundColor("rgba(0,0,0,0)")
    .hideTitleBar(true)
    // Set the mode property of this NavDestination to DIALOG
    .mode(NavDestinationMode.DIALOG)
  }
}

@Entry
@Component
struct Index {
  @Provide('pageInfos') pageInfos: NavPathStack = new NavPathStack()
  isLogin: boolean = false;

  @Builder
  PagesMap(name: string) {
    if (name == 'Page6253') {
      Page6253()
    } else if (name == 'Dialog01') {
      Dialog01()
    }
  }

  build() {
    Navigation(this.pageInfos) {
      Button('push Page6253')
        .width('80%')
        .onClick(() => {
          this.pageInfos.pushPathByName('Page6253', '');
        })
    }
    .mode(NavigationMode.Stack)
    .titleMode(NavigationTitleMode.Mini)
    .title('主页')
    .navDestination(this.PagesMap)
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS 如何设置颜色透明
786浏览 • 1回复 待解决
如何将背景颜色设置透明
2686浏览 • 1回复 待解决
HarmonyOS page和WebView无法设置透明
452浏览 • 1回复 待解决
HarmonyOS color颜色怎么指定透明度?
802浏览 • 1回复 待解决