HarmonyOS RelativeContainer组件的使用

在List组件中的item 使用RelativeContainer组件 的高度设置为 auto 还是一条占一屏高度,如何让高度根据子空间的高度自适应

HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
superinsect

可以参考此demo如下:

@Entry
@Component
struct Index {

  build() {
    List() {
      ListItem() {
        RelativeContainer() {
          Row()
            .width(100)
            .height(100)
            .backgroundColor('#FF3333')
            .alignRules({})

            .id('row1')

          Row()
            .width(100)
            .height(100)
            .backgroundColor('#FFCC00')
            .alignRules({
              top: {
                anchor: 'row1',
                align: VerticalAlign.Top
              },
              left: {
                anchor: 'row1',
                align: HorizontalAlign.End
              },
            })
            .id('row2')

          Row()
            .height(100)
            .width(100)
            .backgroundColor('#FF6633')
            .alignRules({
              left: {
                anchor: 'row1',
                align: HorizontalAlign.Start
              },
              top: {
                anchor: 'row1',
                align: VerticalAlign.Bottom
              }
            })
            .id('row3')
        }

        .height('auto')
        .margin({
          left: 50
        })
        .border({
          width: 2,
          color: '#6699FF'
        })
      }

      ListItem() {
        RelativeContainer() {
          Row()
            .width(100)
            .height(100)
            .backgroundColor('#FF3333')
            .alignRules({})

            .id('row1')

          Row()
            .width(100)
            .height(100)
            .backgroundColor('#FFCC00')
            .alignRules({
              top: {
                anchor: 'row1',
                align: VerticalAlign.Top
              },
              left: {
                anchor: 'row1',
                align: HorizontalAlign.End
              },
            })
            .id('row2')

          Row()
            .height(100)
            .width(100)
            .backgroundColor('#FF6633')
            .alignRules({
              left: {
                anchor: 'row1',
                align: HorizontalAlign.Start
              },
              top: {
                anchor: 'row1',
                align: VerticalAlign.Bottom
              }
            })
            .id('row3')
        }

        .height('auto')
        .margin({
          left: 50
        })
        .border({
          width: 2,
          color: '#6699FF'
        })
      }

      ListItem() {
        RelativeContainer() {
          Row()
            .width(100)
            .height(100)
            .backgroundColor('#FF3333')
            .alignRules({})

            .id('row1')

          Row()
            .width(100)
            .height(100)
            .backgroundColor('#FFCC00')
            .alignRules({
              top: {
                anchor: 'row1',
                align: VerticalAlign.Top
              },
              left: {
                anchor: 'row1',
                align: HorizontalAlign.End
              },
            })
            .id('row2')

          Row()
            .height(100)
            .width(100)
            .backgroundColor('#FF6633')
            .alignRules({
              left: {
                anchor: 'row1',
                align: HorizontalAlign.Start
              },
              top: {
                anchor: 'row1',
                align: VerticalAlign.Bottom
              }
            })
            .id('row3')
        }

        .height('auto')
        .margin({
          left: 50
        })
        .border({
          width: 2,
          color: '#6699FF'
        })
      }
    }
    .backgroundColor('#FFF1F3F5')
    .alignListItem(ListItemAlign.Center)
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
RelativeContainer 组件使用
405浏览 • 1回复 待解决
HarmonyOS RelativeContainer组件
1浏览 • 1回复 待解决
HarmonyOS RelativeContainer使用问题
26浏览 • 1回复 待解决
HarmonyOS RelativeContainer 组件咨询
450浏览 • 1回复 待解决
RelativeContainer组件auto对齐规则
368浏览 • 1回复 待解决
HarmonyOS RelativeContainer居中问题
682浏览 • 1回复 待解决
相对布局(RelativeContainer
1311浏览 • 1回复 待解决