HarmonyOS RelativeContainer容器的宽高如何根据子组件确定

RelativeContainer容器不指定宽高, 根据子组件的尺寸(也是根据内容确定的), 如何让RelativeContainer根据子组件的内容确定自己的宽高。

Stack(){  
  Stack(){  
    RelativeContainer() {  
      Text('123')  
        .id('tv')  
        .width(100)  
        .height(100)  
    }  
    .backgroundColor(Color.Blue)  
  }  
}
HarmonyOS
2024-09-24 12:14:33
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
put_get

RelativeContainer支持宽高自适应子组件,将其设置为auto即可,但限制是当width设置auto时,如果水平方向上子组件以容器作为锚点,则auto不生效,垂直方向上同理。

就像下面情况 Y方向定位不设置,才会自适应height。(水平,竖直方向如果都设置定位,那么父组件这时还是自适应状态等于没有)。

build() {  
  Stack(){  
    Stack(){  
      RelativeContainer() {  
        Text('123')  
          .id('tv')  
          .alignRules({  
            // top: {anchor: "__container__", align: VerticalAlign.Top},  
            left: {anchor: "__container__", align: HorizontalAlign.Start},  
          })  
          .height(100)  
          .width(200)  
      }  
      .width('auto')  
      .height('auto')  
      .backgroundColor(Color.Blue)  
    }  
  }  
}
分享
微博
QQ
微信
回复
2024-09-24 17:34:01
相关问题
RelativeContainer容器不支持自动
387浏览 • 1回复 待解决
HarmonyOS RelativeContainer自适应问题
445浏览 • 1回复 待解决
ArkTs如何获取组件
4516浏览 • 1回复 待解决
HarmonyOS如何获取指定子组件
1084浏览 • 1回复 待解决
如何获取组件,你学会了吗?
2409浏览 • 1回复 待解决
HarmonyOS 容器如何撑满父容器
205浏览 • 1回复 待解决
求大佬告知如何获取组件
369浏览 • 1回复 待解决
HarmonyOS 横屏状态下获取组件
251浏览 • 1回复 待解决
如何获取窗口信息
2289浏览 • 1回复 待解决
如何获取组件和在屏幕上位置
2975浏览 • 2回复 待解决
获取Column最终
324浏览 • 1回复 待解决
HarmonyOS RelativeContainer控件显示问题
253浏览 • 1回复 待解决
组件溢出父容器问题
1191浏览 • 1回复 待解决