HarmonyOS LoadingDialog可以自定义背景颜色吗?

HarmonyOS
19h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zbw_apple

参考demo:

import { LoadingDialog } from '@ohos.arkui.advanced.Dialog';
import { CustomColors } from '@kit.ArkUI';
class CustomThemeImpl implements CustomTheme {
  colors?: CustomColors;
  constructor(colors: CustomColors) {
    this.colors = colors;
  }
}
class CustomThemeColors implements CustomColors {
  fontPrimary = '#ffd0a300';
  iconSecondary = '#ffd000cd';
}
@Entry
@Component
struct Index {
  @State customTheme: CustomTheme = new CustomThemeImpl(new CustomThemeColors());
  dialogController: CustomDialogController = new CustomDialogController({
    builder: LoadingDialog({
      content: 'text',
      theme: this.customTheme,
    }),
    backgroundColor:Color.Red,
  });
  build() {
    Row() {
      Stack() {
        Column() {
          Button('dialog')
            .width(96)
            .height(40)
            .onClick(() => {
              this.dialogController.open();
            })
        }.margin({ bottom: 300 })
      }.align(Alignment.Bottom)
      .width('100%').height('100%')
    }
    .backgroundImageSize({ width: '100%', height: '100%' })
    .height('100%')
  }
}

尝试在backgroundColor:Color.Red后面加上 backgroundBlurStyle:BlurStyle.NONE。

分享
微博
QQ
微信
回复
16h前
相关问题
自定义弹框,遮罩背景颜色无法设置
359浏览 • 1回复 待解决
HarmonyOS 如何自定义相机背景
21浏览 • 1回复 待解决
智慧推荐可以自定义app
7783浏览 • 1回复 待解决
如何去除自定义弹窗的白色背景
2416浏览 • 1回复 待解决
HarmonyOS 自定义Dialog背景色透明问题
1003浏览 • 1回复 待解决
自定义颜色透明度如何实现?
392浏览 • 1回复 待解决
HarmonyOS 如何设置自定义弹框的颜色
43浏览 • 1回复 待解决