HarmonyOS 相对布局的高度问题

相对布局使用的时候高度是100%,怎么样根据相对布局内的子组件需要的高度使用相对布局?

HarmonyOS
2024-10-15 10:23:50
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zbw_apple

可参考如下demo:

@Entry  
@Component  
struct Index {  
  @State message: string = 'Hello World';  
  @State person:Person = new Person()  
  @Builder  
  itemView2(item: Person) {  
    RelativeContainer() {  
      Text(item.name)  
        .fontColor(Color.Black)  
        .fontSize(15)  
        .margin({ left: 10, top: 20 })  
        .id('id_name')  
      Text(item.sex)  
        .fontColor(Color.Gray)  
        .fontSize(13)  
        .alignRules({  
          top: { anchor: 'id_name', align: VerticalAlign.Bottom },  
        })  
        .margin({ left: 10, top: 5 })  
        .id('id_sex')  
      Text(item.phone)  
        .fontColor(Color.Red)  
        .fontSize(12)  
        .alignRules({  
          top: { anchor: 'id_name', align: VerticalAlign.Bottom },  
          left: { anchor: 'id_sex', align: HorizontalAlign.End }  
        })  
        .margin({ left: 5, top: 5 })  
        .id('id_phone')  
      Image($r('app.media.startIcon'))  
        .width(40)  
        .height(40)  
        .objectFit(ImageFit.Cover)  
        .alignRules({  
          left: { anchor: 'id_phone', align: HorizontalAlign.End },  
          center: { anchor: 'id_phone', align: VerticalAlign.Center },  
        })  
        .id('id_avatar')  
    }  
    .width("auto")  
    .height("auto")  
    .borderColor(Color.Pink)  
    .borderWidth(5)  
  }  
  build() {  
    Column() {  
    this.itemView2(this.person)  
    }  
    .justifyContent(FlexAlign.Center)  
    .height('100%')  
    .width('100%')  
  }  
}  
class Person {  
  name: string = "John"  
  sex: string = "男"  
  phone: string = "8208208820"  
  age: number = 18  
}
分享
微博
QQ
微信
回复
2024-10-15 17:58:44
相关问题
HarmonyOS相对布局问题
270浏览 • 1回复 待解决
相对布局(RelativeContainer)
984浏览 • 1回复 待解决
HarmonyOS 列表高度不相同布局
156浏览 • 1回复 待解决
HarmonyOS 高度自适应问题
148浏览 • 1回复 待解决
HarmonyOS scroll高度设置问题
595浏览 • 1回复 待解决
HarmonyOS UI布局问题
268浏览 • 1回复 待解决
ets中设置布局高度和宽度
2973浏览 • 1回复 待解决
HarmonyOS Flex 布局设置问题
283浏览 • 1回复 待解决
HarmonyOS 相对定位和动画
298浏览 • 1回复 待解决
HarmonyOS Web组件高度问题
34浏览 • 1回复 待解决
HarmonyOS 一个Button布局问题
238浏览 • 1回复 待解决
HarmonyOS GridItem自适应高度问题
202浏览 • 1回复 待解决
HarmonyOS scroll 内控件布局问题
125浏览 • 1回复 待解决
HarmonyOS Web高度自适应问题
444浏览 • 1回复 待解决
HarmonyOS 自适应父组件高度问题
708浏览 • 1回复 待解决
HarmonyOS web组件自适应高度问题
749浏览 • 1回复 待解决