#鸿蒙通关秘籍#如何使用RelativeContainer在ArkUI中实现子组件的相对布局?

HarmonyOS
5天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
RDBMS风痕

RelativeContainer组件在ArkUI中用于实现复杂场景下的多元素对齐。定义RelativeContainer不需要额外参数,通过alignRules属性可以设定子组件相对容器或其他子组件的对齐方式。

bash @Entry @Component struct ArkUIClubTest { build() { Column({space: 10}) { RelativeContainer() { Text("text1") .fontSize(25) .width(160) .height(150) .id("text1") .textAlign(TextAlign.End) .backgroundColor("#ccaabb") } .width("100%") .height(190) .backgroundColor(Color.Pink) } .width("100%") .height("100%") .backgroundColor("#aabbcc") .padding(10) } }

分享
微博
QQ
微信
回复
5天前
相关问题
相对布局RelativeContainer
1247浏览 • 1回复 待解决