开天辟地 HarmonyOS(鸿蒙) - 组件(布局类): Flex(垂直布局或水平布局)
开天辟地 HarmonyOS(鸿蒙) - 组件(布局类): Flex(垂直布局或水平布局)
示例如下:
pages\component\layout\FlexDemo.ets
/*
* Flex - 垂直布局或水平布局
* direction - 布局的方向
* space - 子组件的间距
* justifyContent - 每个子组件的主轴方向上的排列方式
* alignItems - 每个子组件的交叉轴方向上的对齐方式
* wrap - 当多个子组件所需要的主轴空间超过了 Flex 的主轴的大小,且 Flex 的交叉轴有额外的空间时,是否需要 wrap
* alignContent - 当 Flex 内的多个组件 wrap 的时候,指定他们在交叉轴上的排列方式
*
* Flex 子组件
* flexBasis() - 主轴方向上的尺寸(不支持半分比),相当于 width()/height()
* alignSelf() - 交叉轴方向上的对齐方式,会覆盖 Flex 的 alignItems
* layoutWeight() - 主轴方向上占用空间的权重
* flexGrow() - 主轴方向上占用空间的权重,与 layoutWeight() 一样,但是必须要指定 Flex 的 width()/height() 才会生效
* flexShrink() - 主轴方向上空间不够时的压缩的权重,必须要指定 Flex 的 width()/height() 才会生效
* displayPriority() - 子组件是否显示的优先级(数字越大优先级越高)
*
* 注:如果需要空白处自动填满,可以使用 Blank 组件,详见 BlankDemo.ets 中的说明
*/
import { TitleBar, RadioBar } from '../../TitleBar';
import { LengthMetrics } from '@kit.ArkUI';
@Entry
@Component
struct FlexDemo {
build() {
Column() {
TitleBar()
Tabs() {
TabContent() { MySample1() }.tabBar('基础').align(Alignment.Top)
TabContent() { MySample2() }.tabBar('垂直布局').align(Alignment.Top)
TabContent() { MySample3() }.tabBar('水平布局').align(Alignment.Top)
TabContent() { MySample4() }.tabBar('wrap').align(Alignment.Top)
TabContent() { MySample5() }.tabBar('权重').align(Alignment.Top)
TabContent() { MySample6() }.tabBar('优先级').align(Alignment.Top)
}
.scrollable(true)
.barMode(BarMode.Scrollable)
.layoutWeight(1)
}
}
}
@Component
struct MySample1 {
build() {
// direction - 布局的方向(FlexDirection 枚举)
// Row, Column, RowReverse, ColumnReverse
// space - 子组件的间距(一个 FlexSpaceOptions 对象)
// main - 主轴方向上的子组件的间距
// cross - 交叉轴方向上的子组件的间距
//
// 子组件 flexBasis() - 主轴方向上的尺寸(不支持半分比),相当于 width()/height()
// FlexDirection.Column 时相当于 height()
// FlexDirection.Row 时相当于 width()
// 注:不指定 Flex 的宽高的话,则其主轴方向会撑满父容器,交叉轴方向会跟随其子组件们的尺寸
Flex({
direction: FlexDirection.Column,
space: {
main: LengthMetrics.vp(10),
}
}) {
Text('1').flexBasis(100)
Text('2')
Text('3')
}
.backgroundColor(Color.Orange)
}
}
@Component
struct MySample2 {
build() {
Flex({
// 垂直布局时
// justifyContent - Flex 内的每个组件的垂直排列方式(可参见 ColumnDemo.ets 中的相关说明)
// alignItems - Flex 内的每个组件的水平对齐方式(可参见 ColumnDemo.ets 中的相关说明)
// 垂直布局时子组件 alignSelf() - 水平对齐方式(ItemAlign 枚举),会覆盖 Flex 的 alignItems
// Auto, Start, Center, End, Baseline, Stretch
direction: FlexDirection.Column,
space: {
main: LengthMetrics.vp(10),
},
justifyContent: FlexAlign.SpaceBetween,
alignItems: ItemAlign.End,
}) {
Column().width(100).height(50).backgroundColor(Color.Blue)
Column().width(100).height(50).backgroundColor(Color.Blue)
Column().width(100).height(50).backgroundColor(Color.Blue)
Column().width(100).height(50).backgroundColor(Color.Blue).alignSelf(ItemAlign.Start)
Column().width(100).height(50).backgroundColor(Color.Blue).alignSelf(ItemAlign.Stretch)
}
.width(200)
.backgroundColor(Color.Orange)
}
}
@Component
struct MySample3 {
build() {
Flex({
// 水平布局时
// justifyContent - Flex 内的每个组件的水平排列方式(可参见 RowDemo.ets 中的相关说明)
// alignItems - Flex 内的每个组件的垂直对齐方式(可参见 RowDemo.ets 中的相关说明)
// 水平布局时子组件 alignSelf() - 垂直对齐方式(ItemAlign 枚举),会覆盖 Flex 的 alignItems
// Auto, Start, Center, End, Baseline, Stretch
direction: FlexDirection.Row,
space: {
main: LengthMetrics.vp(10),
},
justifyContent: FlexAlign.SpaceBetween,
alignItems: ItemAlign.End,
}) {
Column().width(50).height(100).backgroundColor(Color.Blue)
Column().width(50).height(100).backgroundColor(Color.Blue)
Column().width(50).height(100).backgroundColor(Color.Blue)
Column().width(50).height(100).backgroundColor(Color.Blue).alignSelf(ItemAlign.Start)
Column().width(50).height(100).backgroundColor(Color.Blue).alignSelf(ItemAlign.Stretch)
}
.height(200)
.backgroundColor(Color.Orange)
}
}
@Component
struct MySample4 {
@State flexWrap: FlexWrap = FlexWrap.NoWrap
flexWrap_valueList = ["NoWrap", "Wrap", "WrapReverse"]
@State flexAlign: FlexAlign = FlexAlign.Start
flexAlign_valueList = ["Start", "Center", "End", "SpaceBetween", "SpaceAround", "SpaceEvenly"]
build() {
Column({space: 20}) {
RadioBar({valueList: this.flexWrap_valueList, groupName: 'group1', onChange: (selectedIndex: number) => {
this.flexWrap = FlexWrap[this.flexWrap_valueList[selectedIndex]]
}})
RadioBar({valueList: this.flexAlign_valueList, groupName: 'group2', onChange: (selectedIndex: number) => {
this.flexAlign = FlexAlign[this.flexAlign_valueList[selectedIndex]]
}})
// space - 子组件的间距(一个 FlexSpaceOptions 对象)
// main - 主轴方向上的间距
// cross - 交叉轴方向上的间距(当 Flex 内的多个组件 wrap 的时候,就会有交叉轴的排列,此值就会生效)
// wrap - 当 Flex 内的多个组件所需要的主轴空间超过了 Flex 的主轴的大小,且 Flex 的交叉轴有额外的空间时(FlexWrap 枚举)
// NoWrap - 不允许 wrap
// Wrap - 允许 wrap
// alignContent - 当 Flex 内的多个组件 wrap 的时候,此值用于指定他们在交叉轴上的排列方式(FlexAlign 枚举,可以参见 ColumnDemo.ets 或 RowDemo.ets 中的相关说明)
Flex({
space: {
main: LengthMetrics.vp(10),
cross: LengthMetrics.vp(10),
},
direction: FlexDirection.Row,
justifyContent: FlexAlign.SpaceEvenly,
alignItems: ItemAlign.End,
wrap: this.flexWrap,
alignContent: this.flexAlign,
}) {
Column().width('40%').height(20).backgroundColor(Color.Blue)
Column().width('40%').height(20).backgroundColor(Color.Blue)
Column().width('40%').height(20).backgroundColor(Color.Blue)
}
.width(200)
.height(100)
.backgroundColor(Color.Orange)
}
}
}
// 本例以 FlexDirection.Column 为例介绍权重
@Component
struct MySample5 {
build() {
Row() {
Flex({direction: FlexDirection.Column}) {
/*
* 子组件 layoutWeight() - 主轴方向上占用空间的权重
*/
Column().width('100%').backgroundColor(Color.Red)
.height(50)
Column().width('100%').backgroundColor(Color.Green)
.layoutWeight(3)
Column().width('100%').backgroundColor(Color.Blue)
.layoutWeight(1)
Column().width('100%').backgroundColor(Color.Orange)
.layoutWeight(2)
}
.width('33.3%')
Flex({direction: FlexDirection.Column}) {
/*
* 子组件 flexGrow() - 主轴方向上占用空间的权重,与 layoutWeight() 一样
* FlexDirection.Column 时必须要指定 Flex 的 height() 才会生效
* FlexDirection.Row 时必须要指定 Row 的 width() 才会生效
*/
Column().width('100%').backgroundColor(Color.Red)
.height(100)
Column().width('100%').backgroundColor(Color.Green)
.flexGrow(3)
Column().width('100%').backgroundColor(Color.Blue)
.flexGrow(1)
Column().width('100%').backgroundColor(Color.Orange)
.flexGrow(2)
}
.width('33.3%')
.height('100%')
Flex({direction: FlexDirection.Column}) {
/*
* 子组件 flexShrink() - 主轴方向上空间不够时的压缩的权重
* FlexDirection.Column 时必须要指定 Flex 的 height() 才会生效
* FlexDirection.Row 时必须要指定 Row 的 width() 才会生效
*
* 以本例为例:
* 红色占用空间为 200
* 绿色占用空间为整个空间的 50%
* 蓝色占用空间为,除了红色和绿色之外的空间的 50/130
* 橙色占用空间为,除了红色和绿色之外的空间的 80/130
*/
Column().width('100%').backgroundColor(Color.Red)
.flexBasis(200)
.flexShrink(0) // 不压缩
Column().width('100%').backgroundColor(Color.Green)
.height('50%')
.flexShrink(0) // 不压缩
Column().width('100%').backgroundColor(Color.Blue)
.height('50%')
.flexShrink(1) // 压缩权重 1
Column().width('100%').backgroundColor(Color.Orange)
.height('80%')
.flexShrink(1) // 压缩权重 1
}
.width('33.3%')
.height('100%')
}
}
}
@Component
struct MySample6 {
build() {
Column({space:50}) {
/*
* displayPriority() - 子组件是否显示的优先级(数字越大优先级越高)
* 显示不下时,则隐藏低优先级的子组件
* 同一优先级的子组件要显示就都显示,要隐藏就都隐藏
*/
Flex({
direction: FlexDirection.Column,
}) {
Column().width('100%').height(50).backgroundColor(Color.Red)
.displayPriority(1)
Column().width('100%').height(50).backgroundColor(Color.Green)
.displayPriority(2)
Column().width('100%').height(50).backgroundColor(Color.Blue)
.displayPriority(3)
Column().width('100%').height(50).backgroundColor(Color.Orange)
.displayPriority(4)
}
.backgroundColor(Color.Yellow)
.height(180)
Flex({
direction: FlexDirection.Column,
}) {
Column().width('100%').height(50).backgroundColor(Color.Red)
.displayPriority(1)
Column().width('100%').height(50).backgroundColor(Color.Green)
.displayPriority(2)
Column().width('100%').height(50).backgroundColor(Color.Blue)
.displayPriority(2)
Column().width('100%').height(50).backgroundColor(Color.Orange)
.displayPriority(1)
}
.backgroundColor(Color.Yellow)
.height(180)
}
}
}