HarmonyOS PromptAction调用openCustomDialog时maskColor未生效

使用PromptAction调用openCustomDialog时maskColor未生效,代码如下:

class Params {
  text: string = ""
  constructor(text: string) {
    this.text = text;
  }
}

@Builder
function buildText(params: Params) {
  Column() {
    Text(params.text)
      .fontSize(50)
      .fontWeight(FontWeight.Bold)
      .margin({bottom: 36})
  }.backgroundColor(Color.Red)
  .width(300)
  .height(300)
}

let promptAction = uiContext.getPromptAction();
let contentNode = new ComponentContent(uiContext, wrapBuilder(buildText), new Params('dddddd'));
try {
  console.log('OpenCustomDialog start....');
  promptAction.openCustomDialog(contentNode,
    {
      alignment: DialogAlignment.Center,
      autoCancel: false,
      maskColor: '00000000',
      showInSubWindow: true,
      isModal: true,
    }
  )
} catch (error) {
  let message = (error as BusinessError).message;
  let code = (error as BusinessError).code;
  console.error(`OpenCustomDialog args error code is ${code}, message is ${message}`);
}
HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
shlp

暂不支持isModal = true与showInSubWindow = true同时使用。showInSubWindow 置为false即可展示蒙层。

参考文档:https://gitee.com/openharmony/docs/blob/master/zh-cn/application-dev/reference/apis-arkui/js-apis-promptAction.md#promptactionopencustomdialog11

分享
微博
QQ
微信
回复
2天前
相关问题
使用List lazyForeach,reuseId生效
329浏览 • 1回复 待解决
promptAction.openCustomDialog 全局弹窗
506浏览 • 1回复 待解决
promptAction.openCustomDialog 自定义弹窗
366浏览 • 1回复 待解决
HarmonyOS 文字fontFamily生效
35浏览 • 1回复 待解决
HarmonyOS SDK har包代码混淆生效
48浏览 • 1回复 待解决