弹性布局(Flex)

2024-01-25 13:10 更新

概述

弹性布局(Flex)提供更加有效的方式对容器中的子元素进行排列、对齐和分配剩余空间。容器默认存在主轴与交叉轴,子元素默认沿主轴排列,子元素在主轴方向的尺寸称为主轴尺寸,在交叉轴方向的尺寸称为交叉轴尺寸。弹性布局在开发场景中用例特别多,比如页面头部导航栏的均匀分布、页面框架的搭建、多行数据的排列等等。

图1 主轴为水平方向的Flex容器示意图

基本概念

  • 主轴:Flex组件布局方向的轴线,子元素默认沿着主轴排列。主轴开始的位置称为主轴起始点,结束位置称为主轴结束点。
  • 交叉轴:垂直于主轴方向的轴线。交叉轴开始的位置称为交叉轴起始点,结束位置称为交叉轴结束点。

布局方向

在弹性布局中,容器的子元素可以按照任意方向排列。通过设置参数direction,可以决定主轴的方向,从而控制子组件的排列方向。

图2 弹性布局方向图
  • FlexDirection.Row(默认值):主轴为水平方向,子组件从起始端沿着水平方向开始排布。

    1. Flex({ direction: FlexDirection.Row }) {
    2. Text('1').width('33%').height(50).backgroundColor(0xF5DEB3)
    3. Text('2').width('33%').height(50).backgroundColor(0xD2B48C)
    4. Text('3').width('33%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .height(70)
    7. .width('90%')
    8. .padding(10)
    9. .backgroundColor(0xAFEEEE)

  • FlexDirection.RowReverse:主轴为水平方向,子组件从终点端沿着FlexDirection. Row相反的方向开始排布。

    1. Flex({ direction: FlexDirection.RowReverse }) {
    2. Text('1').width('33%').height(50).backgroundColor(0xF5DEB3)
    3. Text('2').width('33%').height(50).backgroundColor(0xD2B48C)
    4. Text('3').width('33%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .height(70)
    7. .width('90%')
    8. .padding(10)
    9. .backgroundColor(0xAFEEEE)

  • FlexDirection.Column:主轴为垂直方向,子组件从起始端沿着垂直方向开始排布。

    1. Flex({ direction: FlexDirection.Column }) {
    2. Text('1').width('100%').height(50).backgroundColor(0xF5DEB3)
    3. Text('2').width('100%').height(50).backgroundColor(0xD2B48C)
    4. Text('3').width('100%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .height(70)
    7. .width('90%')
    8. .padding(10)
    9. .backgroundColor(0xAFEEEE)

  • FlexDirection.ColumnReverse:主轴为垂直方向,子组件从终点端沿着FlexDirection. Column相反的方向开始排布。

    1. Flex({ direction: FlexDirection.ColumnReverse }) {
    2. Text('1').width('100%').height(50).backgroundColor(0xF5DEB3)
    3. Text('2').width('100%').height(50).backgroundColor(0xD2B48C)
    4. Text('3').width('100%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .height(70)
    7. .width('90%')
    8. .padding(10)
    9. .backgroundColor(0xAFEEEE)

布局换行

弹性布局分为单行布局和多行布局。默认情况下,Flex容器中的子元素都排在一条线(又称“轴线”)上。wrap属性控制当子元素主轴尺寸之和大于容器主轴尺寸时,Flex是单行布局还是多行布局。在多行布局时,通过交叉轴方向,确认新行堆叠方向。

  • FlexWrap. NoWrap(默认值):不换行。如果子组件的宽度总和大于父元素的宽度,则子组件会被压缩宽度。

    1. Flex({ wrap: FlexWrap.NoWrap }) {
    2. Text('1').width('50%').height(50).backgroundColor(0xF5DEB3)
    3. Text('2').width('50%').height(50).backgroundColor(0xD2B48C)
    4. Text('3').width('50%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .width('90%')
    7. .padding(10)
    8. .backgroundColor(0xAFEEEE)

  • FlexWrap. Wrap:换行,每一行子组件按照主轴方向排列。

    1. Flex({ wrap: FlexWrap.Wrap }) {
    2. Text('1').width('50%').height(50).backgroundColor(0xF5DEB3)
    3. Text('2').width('50%').height(50).backgroundColor(0xD2B48C)
    4. Text('3').width('50%').height(50).backgroundColor(0xD2B48C)
    5. }
    6. .width('90%')
    7. .padding(10)
    8. .backgroundColor(0xAFEEEE)

  • FlexWrap. WrapReverse:换行,每一行子组件按照主轴反方向排列。

    1. Flex({ wrap: FlexWrap.WrapReverse}) {
    2. Text('1').width('50%').height(50).backgroundColor(0xF5DEB3)
    3. Text('2').width('50%').height(50).backgroundColor(0xD2B48C)
    4. Text('3').width('50%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .width('90%')
    7. .padding(10)
    8. .backgroundColor(0xAFEEEE)

主轴对齐方式

通过justifyContent参数设置在主轴方向的对齐方式。

  • FlexAlign.Start(默认值):子组件在主轴方向起始端对齐, 第一个子组件与父元素边沿对齐,其他元素与前一个元素对齐。

    1. Flex({ justifyContent: FlexAlign.Start }) {
    2. Text('1').width('20%').height(50).backgroundColor(0xF5DEB3)
    3. Text('2').width('20%').height(50).backgroundColor(0xD2B48C)
    4. Text('3').width('20%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .width('90%')
    7. .padding({ top: 10, bottom: 10 })
    8. .backgroundColor(0xAFEEEE)

  • FlexAlign.Center:子组件在主轴方向居中对齐。

    1. Flex({ justifyContent: FlexAlign.Center }) {
    2. Text('1').width('20%').height(50).backgroundColor(0xF5DEB3)
    3. Text('2').width('20%').height(50).backgroundColor(0xD2B48C)
    4. Text('3').width('20%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .width('90%')
    7. .padding({ top: 10, bottom: 10 })
    8. .backgroundColor(0xAFEEEE)

  • FlexAlign.End:子组件在主轴方向终点端对齐, 最后一个子组件与父元素边沿对齐,其他元素与后一个元素对齐。

    1. Flex({ justifyContent: FlexAlign.End }) {
    2. Text('1').width('20%').height(50).backgroundColor(0xF5DEB3)
    3. Text('2').width('20%').height(50).backgroundColor(0xD2B48C)
    4. Text('3').width('20%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .width('90%')
    7. .padding({ top: 10, bottom: 10 })
    8. .backgroundColor(0xAFEEEE)

  • FlexAlign.SpaceBetween:Flex主轴方向均匀分配弹性元素,相邻子组件之间距离相同。第一个子组件和最后一个子组件与父元素边沿对齐。

    1. Flex({ justifyContent: FlexAlign.SpaceBetween }) {
    2. Text('1').width('20%').height(50).backgroundColor(0xF5DEB3)
    3. Text('2').width('20%').height(50).backgroundColor(0xD2B48C)
    4. Text('3').width('20%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .width('90%')
    7. .padding({ top: 10, bottom: 10 })
    8. .backgroundColor(0xAFEEEE)

  • FlexAlign.SpaceAround:Flex主轴方向均匀分配弹性元素,相邻子组件之间距离相同。第一个子组件到主轴起始端的距离和最后一个子组件到主轴终点端的距离是相邻元素之间距离的一半。

    1. Flex({ justifyContent: FlexAlign.SpaceAround }) {
    2. Text('1').width('20%').height(50).backgroundColor(0xF5DEB3)
    3. Text('2').width('20%').height(50).backgroundColor(0xD2B48C)
    4. Text('3').width('20%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .width('90%')
    7. .padding({ top: 10, bottom: 10 })
    8. .backgroundColor(0xAFEEEE)

  • FlexAlign.SpaceEvenly:Flex主轴方向元素等间距布局,相邻子组件之间的间距、第一个子组件与主轴起始端的间距、最后一个子组件到主轴终点端的间距均相等。

    1. Flex({ justifyContent: FlexAlign.SpaceEvenly }) {
    2. Text('1').width('20%').height(50).backgroundColor(0xF5DEB3)
    3. Text('2').width('20%').height(50).backgroundColor(0xD2B48C)
    4. Text('3').width('20%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .width('90%')
    7. .padding({ top: 10, bottom: 10 })
    8. .backgroundColor(0xAFEEEE)

交叉轴对齐方式

容器和子元素都可以设置交叉轴对齐方式,且子元素设置的对齐方式优先级较高。

容器组件设置交叉轴对齐

可以通过Flex组件的alignItems参数设置子组件在交叉轴的对齐方式。

  • ItemAlign.Auto:使用Flex容器中默认配置。

    1. Flex({ alignItems: ItemAlign.Auto }) {
    2. Text('1').width('33%').height(30).backgroundColor(0xF5DEB3)
    3. Text('2').width('33%').height(40).backgroundColor(0xD2B48C)
    4. Text('3').width('33%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .size({ width: '90%', height: 80 })
    7. .padding(10)
    8. .backgroundColor(0xAFEEEE)

  • ItemAlign.Start:交叉轴方向首部对齐。

    1. Flex({ alignItems: ItemAlign.Start }) {
    2. Text('1').width('33%').height(30).backgroundColor(0xF5DEB3)
    3. Text('2').width('33%').height(40).backgroundColor(0xD2B48C)
    4. Text('3').width('33%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .size({ width: '90%', height: 80 })
    7. .padding(10)
    8. .backgroundColor(0xAFEEEE)

  • ItemAlign.Center:交叉轴方向居中对齐。

    1. Flex({ alignItems: ItemAlign.Center }) {
    2. Text('1').width('33%').height(30).backgroundColor(0xF5DEB3)
    3. Text('2').width('33%').height(40).backgroundColor(0xD2B48C)
    4. Text('3').width('33%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .size({ width: '90%', height: 80 })
    7. .padding(10)
    8. .backgroundColor(0xAFEEEE)

  • ItemAlign.End:交叉轴方向底部对齐。

    1. Flex({ alignItems: ItemAlign.End }) {
    2. Text('1').width('33%').height(30).backgroundColor(0xF5DEB3)
    3. Text('2').width('33%').height(40).backgroundColor(0xD2B48C)
    4. Text('3').width('33%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .size({ width: '90%', height: 80 })
    7. .padding(10)
    8. .backgroundColor(0xAFEEEE)

  • ItemAlign.Stretch:交叉轴方向拉伸填充,在未设置尺寸时,拉伸到容器尺寸。

    1. Flex({ alignItems: ItemAlign.Stretch }) {
    2. Text('1').width('33%').backgroundColor(0xF5DEB3)
    3. Text('2').width('33%').backgroundColor(0xD2B48C)
    4. Text('3').width('33%').backgroundColor(0xF5DEB3)
    5. }
    6. .size({ width: '90%', height: 80 })
    7. .padding(10)
    8. .backgroundColor(0xAFEEEE)

  • ItemAlign. Baseline:交叉轴方向文本基线对齐。

    1. Flex({ alignItems: ItemAlign.Baseline }) {
    2. Text('1').width('33%').height(30).backgroundColor(0xF5DEB3)
    3. Text('2').width('33%').height(40).backgroundColor(0xD2B48C)
    4. Text('3').width('33%').height(50).backgroundColor(0xF5DEB3)
    5. }
    6. .size({ width: '90%', height: 80 })
    7. .padding(10)
    8. .backgroundColor(0xAFEEEE)

子组件设置交叉轴对齐

子组件的alignSelf属性也可以设置子组件在父容器交叉轴的对齐格式,且会覆盖Flex布局容器中alignItems配置。如下例所示:

  1. Flex({ direction: FlexDirection.Row, alignItems: ItemAlign.Center }) { // 容器组件设置子组件居中
  2. Text('alignSelf Start').width('25%').height(80)
  3. .alignSelf(ItemAlign.Start)
  4. .backgroundColor(0xF5DEB3)
  5. Text('alignSelf Baseline')
  6. .alignSelf(ItemAlign.Baseline)
  7. .width('25%')
  8. .height(80)
  9. .backgroundColor(0xD2B48C)
  10. Text('alignSelf Baseline').width('25%').height(100)
  11. .backgroundColor(0xF5DEB3)
  12. .alignSelf(ItemAlign.Baseline)
  13. Text('no alignSelf').width('25%').height(100)
  14. .backgroundColor(0xD2B48C)
  15. Text('no alignSelf').width('25%').height(100)
  16. .backgroundColor(0xF5DEB3)
  17. }.width('90%').height(220).backgroundColor(0xAFEEEE)

上例中,Flex容器中alignItems设置交叉轴子组件的对齐方式为居中,子组件自身设置了alignSelf属性的情况,覆盖父组件的alignItems值,表现为alignSelf的定义。

内容对齐

可以通过alignContent参数设置子组件各行在交叉轴剩余空间内的对齐方式,只在多行的flex布局中生效,可选值有:

  • FlexAlign.Start:子组件各行与交叉轴起点对齐。

    1. Flex({ justifyContent: FlexAlign.SpaceBetween, wrap: FlexWrap.Wrap, alignContent: FlexAlign.Start }) {
    2. Text('1').width('30%').height(20).backgroundColor(0xF5DEB3)
    3. Text('2').width('60%').height(20).backgroundColor(0xD2B48C)
    4. Text('3').width('40%').height(20).backgroundColor(0xD2B48C)
    5. Text('4').width('30%').height(20).backgroundColor(0xF5DEB3)
    6. Text('5').width('20%').height(20).backgroundColor(0xD2B48C)
    7. }
    8. .width('90%')
    9. .height(100)
    10. .backgroundColor(0xAFEEEE)

  • FlexAlign.Center:子组件各行在交叉轴方向居中对齐。

    1. Flex({ justifyContent: FlexAlign.SpaceBetween, wrap: FlexWrap.Wrap, alignContent: FlexAlign.Center }) {
    2. Text('1').width('30%').height(20).backgroundColor(0xF5DEB3)
    3. Text('2').width('60%').height(20).backgroundColor(0xD2B48C)
    4. Text('3').width('40%').height(20).backgroundColor(0xD2B48C)
    5. Text('4').width('30%').height(20).backgroundColor(0xF5DEB3)
    6. Text('5').width('20%').height(20).backgroundColor(0xD2B48C)
    7. }
    8. .width('90%')
    9. .height(100)
    10. .backgroundColor(0xAFEEEE)

  • FlexAlign.End:子组件各行与交叉轴终点对齐。

    1. Flex({ justifyContent: FlexAlign.SpaceBetween, wrap: FlexWrap.Wrap, alignContent: FlexAlign.End }) {
    2. Text('1').width('30%').height(20).backgroundColor(0xF5DEB3)
    3. Text('2').width('60%').height(20).backgroundColor(0xD2B48C)
    4. Text('3').width('40%').height(20).backgroundColor(0xD2B48C)
    5. Text('4').width('30%').height(20).backgroundColor(0xF5DEB3)
    6. Text('5').width('20%').height(20).backgroundColor(0xD2B48C)
    7. }
    8. .width('90%')
    9. .height(100)
    10. .backgroundColor(0xAFEEEE)

  • FlexAlign.SpaceBetween:子组件各行与交叉轴两端对齐,各行间垂直间距平均分布。

    1. Flex({ justifyContent: FlexAlign.SpaceBetween, wrap: FlexWrap.Wrap, alignContent: FlexAlign.SpaceBetween }) {
    2. Text('1').width('30%').height(20).backgroundColor(0xF5DEB3)
    3. Text('2').width('60%').height(20).backgroundColor(0xD2B48C)
    4. Text('3').width('40%').height(20).backgroundColor(0xD2B48C)
    5. Text('4').width('30%').height(20).backgroundColor(0xF5DEB3)
    6. Text('5').width('20%').height(20).backgroundColor(0xD2B48C)
    7. }
    8. .width('90%')
    9. .height(100)
    10. .backgroundColor(0xAFEEEE)

  • FlexAlign.SpaceAround:子组件各行间距相等,是元素首尾行与交叉轴两端距离的两倍。

    1. Flex({ justifyContent: FlexAlign.SpaceBetween, wrap: FlexWrap.Wrap, alignContent: FlexAlign.SpaceAround }) {
    2. Text('1').width('30%').height(20).backgroundColor(0xF5DEB3)
    3. Text('2').width('60%').height(20).backgroundColor(0xD2B48C)
    4. Text('3').width('40%').height(20).backgroundColor(0xD2B48C)
    5. Text('4').width('30%').height(20).backgroundColor(0xF5DEB3)
    6. Text('5').width('20%').height(20).backgroundColor(0xD2B48C)
    7. }
    8. .width('90%')
    9. .height(100)
    10. .backgroundColor(0xAFEEEE)

  • FlexAlign.SpaceEvenly: 子组件各行间距,子组件首尾行与交叉轴两端距离都相等。

    1. Flex({ justifyContent: FlexAlign.SpaceBetween, wrap: FlexWrap.Wrap, alignContent: FlexAlign.SpaceEvenly }) {
    2. Text('1').width('30%').height(20).backgroundColor(0xF5DEB3)
    3. Text('2').width('60%').height(20).backgroundColor(0xD2B48C)
    4. Text('3').width('40%').height(20).backgroundColor(0xD2B48C)
    5. Text('4').width('30%').height(20).backgroundColor(0xF5DEB3)
    6. Text('5').width('20%').height(20).backgroundColor(0xD2B48C)
    7. }
    8. .width('90%')
    9. .height(100)
    10. .backgroundColor(0xAFEEEE)

自适应拉伸

在弹性布局父组件尺寸不够大的时候,通过子组件的下面几个属性设置其在父容器的占比,达到自适应布局能力。

  • flexBasis:设置子组件在父容器主轴方向上的基准尺寸。如果设置了该值,则子项占用的空间为设置的值;如果没设置该属性,那子项的空间为width/height的值。

    1. Flex() {
    2. Text('flexBasis("auto")')
    3. .flexBasis('auto') // 未设置width以及flexBasis值为auto,内容自身宽度
    4. .height(100)
    5. .backgroundColor(0xF5DEB3)
    6. Text('flexBasis("auto")' + ' width("40%")')
    7. .width('40%')
    8. .flexBasis('auto') //设置width以及flexBasis值auto,使用width的值
    9. .height(100)
    10. .backgroundColor(0xD2B48C)
    11. Text('flexBasis(100)') // 未设置width以及flexBasis值为100,宽度为100vp
    12. .fontSize(15)
    13. .flexBasis(100)
    14. .height(100)
    15. .backgroundColor(0xF5DEB3)
    16. Text('flexBasis(100)')
    17. .fontSize(15)
    18. .flexBasis(100)
    19. .width(200) // flexBasis值为100,覆盖width的设置值,宽度为100vp
    20. .height(100)
    21. .backgroundColor(0xD2B48C)
    22. }.width('90%').height(120).padding(10).backgroundColor(0xAFEEEE)

  • flexGrow:设置父容器的剩余空间分配给此属性所在组件的比例。用于“瓜分”父组件的剩余空间。
    1. Flex() {
    2. Text('flexGrow(2)')
    3. .flexGrow(2)
    4. .width(100)
    5. .height(100)
    6. .backgroundColor(0xF5DEB3)
    7. Text('flexGrow(3)')
    8. .flexGrow(3)
    9. .width(100)
    10. .height(100)
    11. .backgroundColor(0xD2B48C)
    12. Text('no flexGrow')
    13. .width(100)
    14. .height(100)
    15. .backgroundColor(0xF5DEB3)
    16. }.width(420).height(120).padding(10).backgroundColor(0xAFEEEE)

    父容器宽度420vp,三个子元素原始宽度为100vp,左右padding为20vp,总和320vp,剩余空间100vp根据flexGrow值的占比分配给子元素,未设置flexGrow的子元素不参与“瓜分”。

    第一个元素以及第二个元素以2:3分配剩下的100vp。第一个元素为100vp+100vp*2/5=140vp,第二个元素为100vp+100vp*3/5=160vp。

  • flexShrink: 当父容器空间不足时,子组件的压缩比例。

    1. Flex({ direction: FlexDirection.Row }) {
    2. Text('flexShrink(3)')
    3. .fontSize(15)
    4. .flexShrink(3)
    5. .width(200)
    6. .height(100)
    7. .backgroundColor(0xF5DEB3)
    8. Text('no flexShrink')
    9. .width(200)
    10. .height(100)
    11. .backgroundColor(0xD2B48C)
    12. Text('flexShrink(2)')
    13. .flexShrink(2)
    14. .width(200)
    15. .height(100)
    16. .backgroundColor(0xF5DEB3)
    17. }.width(400).height(120).padding(10).backgroundColor(0xAFEEEE)

相关实例

使用弹性布局,可以实现子组件沿水平方向排列,两端对齐,子组件间距平分,竖直方向上子组件居中的效果。

  1. @Entry
  2. @Component
  3. struct FlexExample {
  4. build() {
  5. Column() {
  6. Column({ space: 5 }) {
  7. Flex({ direction: FlexDirection.Row, wrap: FlexWrap.NoWrap, justifyContent: FlexAlign.SpaceBetween, alignItems: ItemAlign.Center }) {
  8. Text('1').width('30%').height(50).backgroundColor(0xF5DEB3)
  9. Text('2').width('30%').height(50).backgroundColor(0xD2B48C)
  10. Text('3').width('30%').height(50).backgroundColor(0xF5DEB3)
  11. }
  12. .height(70)
  13. .width('90%')
  14. .backgroundColor(0xAFEEEE)
  15. }.width('100%').margin({ top: 5 })
  16. }.width('100%')
  17. }
  18. }

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号