HarmonyOS Stack容器中子view自适应高度问题

在一个Stack容器中 有两个布局 A布局高度为自适应, B布局要求高度和A布局相同 这样怎么实现? 两个都加了layoutWeight(1) 都没有用。

HarmonyOS
2024-08-09 11:31:12
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
put_get

1、关于 layoutWeight 属性,文档有说明仅在Row/Column/Flex布局中生效。文档链接:https://developer.huawei.com/consumer/cn/doc/harmonyos-references/ts-universal-attributes-size-0000001815767712#ZH-CN_TOPIC_0000001815767712__layoutweight。

2、在 Stack 容器中实现B组件跟随A组件高度可以使用onAreaChange组建区域事件变化获取A组件变化后高度。

@Entry 
@Component 
struct Index { 
  @State message: string = 'Hello World'; 
  @State sizeValue:string = "" 
  @State sizeValueOld:string = "" 
  @State heightValue:string = "" 
 
  build() { 
    Row() { 
      Column() { 
        Text(this.message) 
          .fontSize(50) 
          .fontWeight(FontWeight.Bold) 
        Text(this.sizeValue+"") 
          .height(100) 
          .fontSize(15) 
        Text(this.sizeValueOld+"") 
          .height(100) 
          .fontSize(15) 
        Stack({ alignContent: Alignment.Bottom }) { 
          //A组件 
          Flex({ direction:FlexDirection.Column,justifyContent:FlexAlign.SpaceBetween }){ 
            Text('First child, show in bottom') 
              .width('95%') 
              .height("50%") 
              .backgroundColor(0xd2cab3) 
              .align(Alignment.Top) 
              .onAreaChange((oldValue: Area, newValue: Area) => { 
                console.info(`Ace: on area change, oldValue is ${JSON.stringify(oldValue)} value is ${JSON.stringify(newValue)}`) 
                this.heightValue = newValue.height.toString() 
                this.sizeValue = JSON.stringify(newValue) 
                this.sizeValueOld = JSON.stringify(oldValue) 
              }) 
          } 
          //B组件 
          Flex({ direction:FlexDirection.Column,justifyContent:FlexAlign.SpaceBetween }){ 
            Text('Second child, show in top') 
              .width(200) 
                //可直接写 this.heightValue ,也可以转换成数字类型进行计算调整B组件高度 
              .height(Number(this.heightValue)-100) 
              .backgroundColor(0xc1cbac) 
              .align(Alignment.Top) 
          } 
        } 
        .width('100%') 
        .height(500) 
        .margin({ top: 5 }) 
        .alignContent(Alignment.Center) 
      } 
      .width('100%') 
    } 
    .height('100%') 
  } 
}
分享
微博
QQ
微信
回复
2024-08-09 18:20:36
相关问题
HarmonyOS Web高度自适应问题
444浏览 • 1回复 待解决
HarmonyOS GridItem自适应高度问题
202浏览 • 1回复 待解决
HarmonyOS 高度自适应问题
148浏览 • 1回复 待解决
HarmonyOS Grid自适应高度和拖拽问题
168浏览 • 1回复 待解决
HarmonyOS 自适应父组件高度问题
709浏览 • 1回复 待解决
HarmonyOS web组件自适应高度问题
760浏览 • 1回复 待解决
HarmonyOS 高度自适应
105浏览 • 1回复 待解决
HarmonyOS RelativeContainer无法自适应高度
160浏览 • 1回复 待解决
Web组件如何实现高度自适应
920浏览 • 1回复 待解决
Grid组件如何实现高度自适应
2985浏览 • 1回复 待解决
HarmonyOS RelativeContainer宽高自适应问题
273浏览 • 1回复 待解决
Scroll容器中子组件吸顶效果
230浏览 • 1回复 待解决