• Lv0
    粉丝0

积分82 / 贡献0

提问30答案被采纳0文章0

如何将Ability的UI界面设置成透明

lom

沙发 发表于 2023-10-13 17:14:44

将最上层容器组件背景色设置为透明,然后通过设置XComponent组件的opacity属性值为0.01来实现。

Stack() {

    XComponent({

    id: 'componentId',

    type: 'surface',

    })

    .width('100%')

    .height('100%')

    .opacity(0.01)

    // 页面内容

  }

  .width('100%')

  .height('100%')

  .backgroundColor('rgba(255,255,255, 0)')

}

Copyright   ©2023  OpenHarmony开发者论坛  京ICP备2020036654号-3 |技术支持 Discuz!

返回顶部