《鸿蒙开发-答案之书》RelativeContainer不好理解?
RelativeContainer关键是锚点,子组件要放那里?就比如我拿起这个子组件,它的右边要和父组件右边对齐。那我锚点就右边,然后去锚父组件的右。
代码如下:
RelativeContainer(){
Text('123')
.width(30)
.height(30)
.backgroundColor(Color.Pink)
.alignRules({
right:{
anchor:'__container__',
align:HorizontalAlign.End
}
})
.id('text1')
}
.width(300)
.height(300)
.border({
color:Color.Gray,
width:1,
radius:5
})
还有如果忘了__container__单词怎么写,其实RelativeContainer就包含这个单词。
锚点对齐后,可以通过offset微调方位
有鸿蒙开发bug或者功能需求的都可以私信我,我每天都看私信的
标签:__,RelativeContainer,鸿蒙,width,锚点,答案,组件 From: https://blog.csdn.net/u010074743/article/details/145074933