HarmonyOS 两种模式布局如何兼容。

第一种布局:

是子控件高度确定,撑起父控件。

第二种布局:

是父控件的高度是由兄弟组件给出流出的余空间作为高度,子控件按照某种比例计以及当前父控件的高度算出各自高度。

现在通过一个变量,在同一个组件中来控制切换两种布局模式,应该如何做。

HarmonyOS
2024-08-29 15:48:41
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
put_get

可参考:

class MyModifier implements AttributeModifier<ColumnAttribute> { 
  isRemain: boolean = false 
 
  applyNormalAttribute(instance: ColumnAttribute): void { 
    if (this.isRemain) { 
      instance.layoutWeight(1) 
    } 
  } 
} 
@Entry 
@Component 
struct Index { 
  @State onPen: boolean = true 
  @State modifier: MyModifier = new MyModifier() 
  @State comp1Height: Length = 0 
  @State comp2Height: Length = 0 
  build() { 
    Column () { 
      Text('文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定文本数量不确定') 
      // onPen:true,希望cmp1和cmp2撑起外层Colum的高度这个比较好写 
      // false,希望colum高度是当前布局的剩余高度即Brown颜色部分。然后Cmp1和Cmp1的高度是Brown区域高度的2比1分配(这个在这个基础上怎么写) 
      Column() { 
        Cmp1() 
          .height(this.onPen ? this.getH1() : this.comp1Height) 
          .width('90%') 
          .backgroundColor('#ffe4aaf8') 
        Cmp2() 
          .height(this.onPen ? this.getH2() : this.comp2Height) 
          .width('90%') 
          .backgroundColor('#ff3094fa') 
      } 
      .width('100%') 
      .backgroundColor(Color.Brown) 
      .attributeModifier(this.modifier) 
      .onAreaChange((oldValue: Area, newValue: Area) => { 
        let height = newValue.height 
        this.comp1Height = Number(height) * (2/3) 
        this.comp2Height = Number(height) * (1/3) 
      }) 
  Text('点击切换模式') 
    .onClick(() => { 
      this.onPen = !this.onPen 
      this.modifier.isRemain = !this.modifier.isRemain 
    }) 
} 
.height('100%') 
.width('100%') 
.backgroundColor(Color.Green) 
 
  } 
  getH1(): number { 
    // true,希望cmp1和cmp2撑起外层Colum的高度 
    if (this.onPen) { 
      return 100 
    } else { 
    } 
    return 0 
  } 
  getH2(): number { 
    // true,希望cmp1和cmp2撑起外层Colum的高度 
    if (this.onPen) { 
      return 89 
    } else { 
    } 
    return 0 
  } 
} 
@Component 
struct Cmp1 { 
  build() { 
    Column() { 
      Text('1') 
    } 
  } 
} 
@Component 
struct Cmp2 { 
  build() { 
    Column() { 
      Text('2') 
    } 
  } 
}
分享
微博
QQ
微信
回复
2024-08-29 16:59:47
相关问题
PolarDB 集群的连接地址包括哪两种
2739浏览 • 1回复 待解决
js获取canvas对象两种方式有啥不同?
7361浏览 • 1回复 待解决
HarmonyOS方法兼容问题
292浏览 • 1回复 待解决
HarmonyOS如何实现帧布局
258浏览 • 1回复 待解决
HarmonyOS 如何实现流式布局
284浏览 • 1回复 待解决
HarmonyOS 4.0 Next是否兼容Java开发方式?
5590浏览 • 2回复 待解决
LLVM兼容范围都有哪些版本
174浏览 • 1回复 待解决