HarmonyOS RelativeContainer中alignRules的bias属性设置无效

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

参考demo:

@Entry
@Component
struct Index {
  build() {
    Row() {
      RelativeContainer() {
        Row().width(100).height(100)
          .backgroundColor("#FF3333")
          .alignRules({
            top: {anchor: "__container__", align: VerticalAlign.Top},
            bottom : {anchor : "__container__", align : VerticalAlign.Bottom},
            left: {anchor: "__container__", align: HorizontalAlign.Start},
            right : {anchor : "__container__", align: HorizontalAlign.End},
            bias : {vertical : 0.3}
          })
          .id("row1")
      }
      .width(300).height(300)
      .margin({left: 50})
      .border({width:2, color: "#6699FF"})
    }
    .height('100%')
  }
}
分享
微博
QQ
微信
回复
8h前
相关问题
HarmonyOS 组件设置属性无效
376浏览 • 1回复 待解决
HarmonyOS 设置 bodercolor 无效
327浏览 • 1回复 待解决
HarmonyOS bindPopup设置color无效
774浏览 • 0回复 待解决
HarmonyOS camera设置对焦无效
365浏览 • 1回复 待解决
HarmonyOS 用域名设置cookie无效
22浏览 • 1回复 待解决
HarmonyOS 相机打开闪光灯设置无效
1009浏览 • 1回复 待解决
HarmonyOS RelativeContainer居中问题
653浏览 • 1回复 待解决