发表于 2025-1-7 03:09:02

纯血鸿蒙ArkUI线性布局详解

线性布局说明

线性布局(LinearLayout)是开发中最常用的布局,通过线性容器Row和Column构建。线性布局是其他布局的基础,其子元素在线性方向上(水平方向和垂直方向)依次排列。线性布局的排列方向由所选容器组件决定,Column容器内子元素按照垂直方向排列,Row容器内子元素按照水平方向排列。根据不同的排列方向,开发者可选择使用Row或Column容器创建线性布局。
https://i-blog.csdnimg.cn/direct/cb07355ed0cb48a99c6fe9cd394f95cf.png
Column容器内子元素排列示意图
https://i-blog.csdnimg.cn/direct/c6cd04723f6a4f58980e37aadc97cf7c.png
Row容器内子元素排列示意图
基础概念



[*] 布局容器:具有布局能力的容器组件,可以承载其他元素作为其子元素,布局容器会对其子元素举行尺寸计算和布局排列。
[*] 布局子元素:布局容器内部的元素。
[*] 主轴:线性布局容器在布局方向上的轴线,子元素默认沿主轴排列。Row容器主轴为水平方向,Column容器主轴为垂直方向。
[*] 交织轴:垂直于主轴方向的轴线。Row容器交织轴为垂直方向,Column容器交织轴为水平方向。
[*] 间距:布局子元素的间距。
布局子元素在排列方向上的间距

在布局容器内,可以通过space属性设置排列方向上子元素的间距,使各子元素在排列方向上有等间距效果。
Column容器内排列方向上的间距

https://i-blog.csdnimg.cn/direct/f34f6136dd034778b4abbccd0751c862.png
Column容器内排列方向的间距图
@Entry
@Component
struct LinearLayout {
    build() {
      // Column容器组件默认情况下在垂直方向从上向下对子组件进行布局
      // space的值设置为20,表示子组件之间的距离为20vp
      Column({ space: 20 }) {
            Text('space: 20').fontSize(15).fontColor(Color.Gray).width('90%')
            Row().width('90%').height(50).backgroundColor(0xF5DEB3)
            Row().width('90%').height(50).backgroundColor(0xD2B48C)
            Row().width('90%').height(50).backgroundColor(0xF5DEB3)
      }.width('100%')
    }
} https://i-blog.csdnimg.cn/direct/6881dd0d340948f8990b729acb964e3d.png
Row容器内排列方向上的间距

https://i-blog.csdnimg.cn/direct/151434c9009d4ef6a4549afbdcd7e7e4.png
Row容器内排列方向的间距图
@Entry
@Component
struct LinearLayout {
    build() {
      // 默认情况下,Row对子组件在水平方向上从左向右布局
      // space设置为35表示子组件之间在主轴方向上间距为35vp
      Row({ space: 35 }) {
            Text('space: 35').fontSize(15).fontColor(Color.Gray)
            Row().width('10%').height(150).backgroundColor(0xF5DEB3)
            Row().width('10%').height(150).backgroundColor(0xD2B48C)
            Row().width('10%').height(150).backgroundColor(0xF5DEB3)
      }.width('90%')
    }
} https://i-blog.csdnimg.cn/direct/21694030683f4e94b912b97e9ae7fcea.png
布局子元素在交织轴上的对齐方式

在布局容器内,可以通过alignItems属性设置子元素在交织轴(排列方向的垂直方向)上的对齐方式。且在各类尺寸屏幕中,体现同等。此中,交织轴为垂直方向时,取值为VerticalAlign范例,水平方向取值为HorizontalAlign范例。
alignSelf属性用于控制单个子元素在容器交织轴上的对齐方式,其优先级高于alignItems属性,如果设置了alignSelf属性,则在单个子元素上会覆盖alignItems属性。
Column容器内子元素在水平方向上的排列

https://i-blog.csdnimg.cn/direct/96af144c3ad74031a2ce9a42d43bda6f.png
Column容器内子元素在水平方向上的排列图1
1. HorizontalAlign.Start:子元素在水平方向左对齐。
@Entry
@Component
struct LinearLayout03 {
    build() {
      // 列容器组件默认情况下对子组件从上向下布局
      Column({}) {
            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)

            Column() {
            }.width('80%').height(50).backgroundColor(0xD2B48C)

            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)
      }
      .width('100%')
      // 设置列容器组件子元素在水平方向左对齐
      .alignItems(HorizontalAlign.Start)
      .backgroundColor('rgb(242,242,242)')
    }
} https://i-blog.csdnimg.cn/direct/a593a212686e4845947e0ab88e25c0e8.png
2. HorizontalAlign.Center:子元素在水平方向居中对齐。
@Entry
@Component
struct LinearLayout04 {
    build() {
      // 列容器组件默认情况下对子组件在垂直方向从上向下布局
      Column({}) {
            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)

            Column() {
            }.width('80%').height(50).backgroundColor(0xD2B48C)

            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)
      }
      .width('100%')
      // 设置列容器组件子组件在水平方向居中对齐
      .alignItems(HorizontalAlign.Center)
      .backgroundColor('rgb(242,242,242)')
    }
} https://i-blog.csdnimg.cn/direct/82420a7c1f844d738d799016793581f1.png
3. HorizontalAlign.End:子元素在水平方向右对齐。
@Entry
@Component
struct LinearLayout05 {
    build() {
      // 列容器组件默认情况下对子组件在垂直方向从上向下布局
      Column({}) {
            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)

            Column() {
            }.width('80%').height(50).backgroundColor(0xD2B48C)

            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)
      }
      .width('100%')
      // 设置列容器组件的子组件在水平方向右对齐
      .alignItems(HorizontalAlign.End)
      .backgroundColor('rgb(242,242,242)')
    }
} https://i-blog.csdnimg.cn/direct/c31d87e588184968894a27850d3ef782.png
Row容器内子元素在垂直方向上的排列

https://i-blog.csdnimg.cn/direct/b867893c423b47c5be2ed43b0d7a27ef.png
Row容器内子元素在垂直方向上的排列图
1. VerticalAlign.Top:子元素在垂直方向顶部对齐。
@Entry
@Component
struct LinearLayout06 {
    build() {
      // 行容器组件默认情况下对子组件在水平方向从左向右布局
      Row({}) {
            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)

            Column() {
            }.width('20%').height(30).backgroundColor(0xD2B48C)

            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)
      }
      .width('100%')
      .height(200)
      // 设置行容器子组件在垂直方向顶部对齐
      .alignItems(VerticalAlign.Top)
      .backgroundColor('rgb(242,242,242)')
    }
} https://i-blog.csdnimg.cn/direct/a780dec9a94e44acabf87d33d08ffd82.png
2. VerticalAlign.Center:子元素在垂直方向居中对齐。
@Entry
@Component
struct LinearLayout07 {
    build() {
      // 行容器组件默认情况下对子组件在水平方向从左向右布局
      Row({}) {
            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)

            Column() {
            }.width('20%').height(30).backgroundColor(0xD2B48C)

            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)
      }
      .width('100%')
      .height(200)
      // 设置行容器组件的子组件在垂直方向居中对齐
      .alignItems(VerticalAlign.Center)
      .backgroundColor('rgb(242,242,242)')
    }
} https://i-blog.csdnimg.cn/direct/293a8706989c45eb83d6778038c3e187.png
3. VerticalAlign.Bottom:子元素在垂直方向底部对齐。
@Entry
@Component
struct LinearLayout08 {
    build() {
      // 行容器组件默认情况下对子组件在水平方向上从左向右布局
      Row({}) {
            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)

            Column() {
            }.width('20%').height(30).backgroundColor(0xD2B48C)

            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)
      }.width('100%').height(200)
      // 设置行容器组件的子组件在垂直方向上底部对齐
      .alignItems(VerticalAlign.Bottom).backgroundColor('rgb(242,242,242)')
    }
} https://i-blog.csdnimg.cn/direct/4b43a1c96f234e2dad2b665f377e5deb.png
布局子元素在主轴上的排列方式

在布局容器内,可以通过justifyContent属性设置子元素在容器主轴上的排列方式。可以从主轴起始位置开始排布,也可以从主轴结束位置开始排布,或者均匀分割主轴的空间。
Column容器内子元素在垂直方向上的排列

https://i-blog.csdnimg.cn/direct/6644ab64eef240948518080160117fe5.png
Column容器内子元素在垂直方向上的排列图
1. justifyContent(FlexAlign.Start):元素在垂直方向顶部对齐,第一个元素与顶部对齐,后续元素与前一个对齐。
@Entry
@Component
struct LinearLayout09 {
    build() {
      // 列容器组件默认情况下对子组件在垂直方向从上向下布局
      Column({}) {
            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)

            Column() {
            }.width('80%').height(50).backgroundColor(0xD2B48C)

            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)
      }
      .width('100%')
      .height(300)
      .backgroundColor('rgb(242,242,242)')
      // 设置列容器组件子组件在垂直方向顶部对齐,第一个元素与顶部对齐,后续元素与前一个对齐。
      .justifyContent(FlexAlign.Start)
    }
} https://i-blog.csdnimg.cn/direct/956ef84ca4fb4ac4988abe658feb7b3c.png
2. justifyContent(FlexAlign.Center):元素在垂直方向中心对齐,第一个元素与顶部的距离与最后一个元素与底部距离雷同。
@Entry
@Component
struct LinearLayout10 {
    build() {
      // 列容器组件默认情况下对子组件在垂直方向上从上向下布局
      Column({}) {
            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)

            Column() {
            }.width('80%').height(50).backgroundColor(0xD2B48C)

            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)
      }.width('100%').height(300).backgroundColor('rgb(242,242,242)')
      // 设置列容器子组件在垂直方向中心对齐,第一个元素与顶部的距离与最后一个元素与底部距离相同。
      .justifyContent(FlexAlign.Center)
    }
} https://i-blog.csdnimg.cn/direct/b680b08efee94208ab5d4539e484e5a5.png3. justifyContent(FlexAlign.End):元素在垂直方向底部对齐,最后一个元素与底部对齐,其他元素与后一个对齐。
@Entry
@Component
struct LinearLayout11 {
    build() {
      // 列容器组件默认情况下对子组件在垂直方向上从上向下布局
      Column({}) {
            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)

            Column() {
            }.width('80%').height(50).backgroundColor(0xD2B48C)

            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)
      }.width('100%').height(300).backgroundColor('rgb(242,242,242)')
      // 设置列容器子组件在垂直方向底部对齐,最后一个元素与底部对齐,其他元素与后一个对齐。
      .justifyContent(FlexAlign.End)
    }
} https://i-blog.csdnimg.cn/direct/9d8cb6c75658413f8f7df4a7fe4ed9f9.png
4. justifyContent(FlexAlign.SpaceBetween):垂直方向均匀分配元素,相邻元素之间距离雷同。第一个元素与容器顶部对齐,最后一个元素与容器底部对齐。
@Entry
@Component
struct LinearLayout12 {
    build() {
      // 列容器组件默认情况下对子组件在垂直方向从上向下布局
      Column({}) {
            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)

            Column() {
            }.width('80%').height(50).backgroundColor(0xD2B48C)

            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)
      }.width('100%').height(300).backgroundColor('rgb(242,242,242)')
      // 垂直方向均匀分配元素,相邻元素之间距离相同。第一个元素与容器顶部对齐,最后一个元素与容器底部对齐。
      .justifyContent(FlexAlign.SpaceBetween)
    }
} https://i-blog.csdnimg.cn/direct/782266ff9b774dc282b8bea050fa4f2c.png
5. justifyContent(FlexAlign.SpaceAround):垂直方向均匀分配元素,相邻元素之间距离雷同。第一个元素到容器顶部的距离和最后一个元素到容器底部的距离是相邻元素之间距离的一半。
@Entry
@Component
struct LinearLayout13 {
    build() {
      // 列容器组件默认情况下对子组件在垂直方向从上向下布局
      Column({}) {
            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)

            Column() {
            }.width('80%').height(50).backgroundColor(0xD2B48C)

            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)
      }.width('100%').height(300).backgroundColor('rgb(242,242,242)')
      // 设置列容器组件子组件垂直方向均匀分配元素,相邻元素之间距离相同。
      // 第一个元素到容器顶部的距离和最后一个元素到容器底部的距离是相邻元素之间距离的一半。
      .justifyContent(FlexAlign.SpaceAround)
    }
} https://i-blog.csdnimg.cn/direct/ff30a2d4e8af42e09d8930c11ae72853.png

6. justifyContent(FlexAlign.SpaceEvenly):垂直方向均匀分配元素,相邻元素之间的距离、第一个元素与容器顶部的间距、最后一个元素到容器底部的间距都完全一样。
@Entry
@Component
struct LinearLayout14 {
    build() {
      // 列容器组件默认情况下对子组件在垂直方向上并从上向下布局
      Column({}) {
            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)

            Column() {
            }.width('80%').height(50).backgroundColor(0xD2B48C)

            Column() {
            }.width('80%').height(50).backgroundColor(0xF5DEB3)
      }.width('100%').height(300).backgroundColor('rgb(242,242,242)')
      // 设置列容器子组件垂直方向均匀分配元素,
      // 相邻元素之间的距离、第一个元素与容器顶部的间距、最后一个元素到容器底部的间距都完全一样。
      .justifyContent(FlexAlign.SpaceEvenly)
    }
}
Row容器内子元素在水平方向上的排列

https://i-blog.csdnimg.cn/direct/bc8a21de91cf44ee90d4949f2ce50e45.png
Row容器内子元素在水平方向上的排列图
1. ustifyContent(FlexAlign.Start):元素在水平方向左对齐,第一个元素与容器左侧对齐,同时后续的元素与前一个对齐。
@Entry
@Component
struct LinearLayout15 {
    build() {
      // 行容器组件默认情况下对子组件在水平方向上从左向右布局
      Row({}) {
            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)

            Column() {
            }.width('20%').height(30).backgroundColor(0xD2B48C)

            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)
      }.width('100%').height(200).backgroundColor('rgb(242,242,242)')
      // 设置行容器组件的子组件在水平方向左对齐,第一个元素与容器左侧对齐,同时后续的元素与前一个对齐。
      .justifyContent(FlexAlign.Start)
    }
} https://i-blog.csdnimg.cn/direct/57ae196f50084c7382721a74d20508e5.png
2. justifyContent(FlexAlign.Center):元素在水平方向居中对齐,第一个元素与容器左侧的距离与最后一个元素与容器右侧距离雷同。
@Entry
@Component
struct LinearLayout16 {
    build() {
      // 行容器组件默认情况下对子组件在水平方向从左向右布局
      Row({}) {
            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)

            Column() {
            }.width('20%').height(30).backgroundColor(0xD2B48C)

            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)
      }.width('100%').height(200).backgroundColor('rgb(242,242,242)')
      // 设置行容器子组件在水平方向居中对齐,第一个元素与容器左侧的距离与最后一个元素与容器右侧距离相同。
      .justifyContent(FlexAlign.Center)
    }
} https://i-blog.csdnimg.cn/direct/8f55578557644995b35862930e1ffa89.png
3. justifyContent(FlexAlign.End):元素在水平方向右对齐,最后一个元素与行容器右侧对齐,其他元素与后一个对齐。
@Entry
@Component
struct LinearLayout17 {
    build() {
      // 行容器组件默认情况下对子组件在水平方向从左向右布局
      Row({}) {
            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)

            Column() {
            }.width('20%').height(30).backgroundColor(0xD2B48C)

            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)
      }.width('100%').height(200).backgroundColor('rgb(242,242,242)')
      // 设置行容器子组件在水平方向右对齐,最后一个元素与行容器右侧对齐,其他元素与后一个对齐。
      .justifyContent(FlexAlign.End)
    }
} https://i-blog.csdnimg.cn/direct/054eb5abdea445c1b5c503daf06f1e6b.png
4. justifyContent(FlexAlign.SpaceBetween):水平方向均匀分配元素,相邻元素之间距离雷同。第一个元素与行首对齐,最后一个元素与行尾对齐。
@Entry
@Component
struct LinearLayout18 {
    build() {
      // 行容器组件默认情况下对子组件在水平方向从左向右布局
      Row({}) {
            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)

            Column() {
            }.width('20%').height(30).backgroundColor(0xD2B48C)

            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)
      }.width('100%').height(200).backgroundColor('rgb(242,242,242)')
      // 设置行容器子组件水平方向均匀分配元素,
      // 相邻元素之间距离相同。第一个元素与容器左侧对齐,最后一个元素与容器右侧对齐。
      .justifyContent(FlexAlign.SpaceBetween)
    }
} https://i-blog.csdnimg.cn/direct/08041c8de210485b83ae30ad838aae2e.png
5. justifyContent(FlexAlign.SpaceAround):水平方向均匀分配元素,相邻元素之间距离雷同。第一个元素到行容器左侧的距离和最后一个元素到行容器右侧的距离是相邻元素之间距离的一半。
@Entry
@Component
struct LinearLayout19 {
    build() {
      // 行容器组件默认情况下对子组件在水平方向从左向右布局
      Row({}) {
            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)

            Column() {
            }.width('20%').height(30).backgroundColor(0xD2B48C)

            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)
      }.width('100%').height(200).backgroundColor('rgb(242,242,242)')
      // 设置行容器子组件水平方向均匀分配元素,相邻元素之间距离相同。
      // 第一个元素到行容器左侧的距离和最后一个元素到行容器右侧的距离是相邻元素之间距离的一半。
      .justifyContent(FlexAlign.SpaceAround)
    }
} https://i-blog.csdnimg.cn/direct/8b61e123803845d280d9aebc8eed5932.png
6. justifyContent(FlexAlign.SpaceEvenly):水平方向均匀分配元素,相邻元素之间的距离、第一个元素与行首的间距、最后一个元素到行尾的间距都完全一样。
@Entry
@Component
struct LinearLayout20 {
    build() {
      // 行容器组件默认情况下对子组件在水平方向从左向右布局
      Row({}) {
            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)

            Column() {
            }.width('20%').height(30).backgroundColor(0xD2B48C)

            Column() {
            }.width('20%').height(30).backgroundColor(0xF5DEB3)
      }.width('100%').height(200).backgroundColor('rgb(242,242,242)')
      // 设置行容器子组件在水平方向均匀分配元素,
      // 相邻元素之间的距离、第一个元素与容器左侧的间距、最后一个元素到容器右侧的间距都完全一样。
      .justifyContent(FlexAlign.SpaceEvenly)
    }
} https://i-blog.csdnimg.cn/direct/b43b16830c1349ae9aa741e15a40852f.png
自顺应拉伸

在线性布局下,常用空白添补组件Blank,在容器主轴方向自动添补空白空间,到达自顺应拉伸效果。Row和Column作为容器,只需要添加宽高为百分比,当屏幕宽高发生变化时,会产生自顺应效果。
@Entry
@Component
struct LinearLayout21 {
    build() {
      // 列容器组件默认情况下对子组件在垂直方向从上向下布局
      Column() {
            Row() {
                Text('Bluetooth').fontSize(18)
                // 空白填充组件Blank,在容器主轴方向自动填充空白空间,达到自适应拉伸效果
                Blank()
                Toggle({ type: ToggleType.Switch, isOn: true })
            }.backgroundColor(0xFFFFFF).borderRadius(15).padding({ left: 12 }).width('100%')
      }.backgroundColor(0xEFEFEF).padding(20).width('100%')
    }
} https://i-blog.csdnimg.cn/direct/aa4907bd007040dfaf7b81899cce7136.png
竖屏
https://i-blog.csdnimg.cn/direct/9ab0e198b62f4295bbfbb5994a5a6bdc.png
横屏
自顺应缩放

自顺应缩放是指子元素随容器尺寸的变化而按照预设的比例自动调解尺寸,顺应各种不同巨细的设备。在线性布局中,可以使用以下两种方法实现自顺应缩放。
1. 父容器尺寸确定时,使用layoutWeight属性设置子元素和兄弟元素在主轴上的权重,忽略元素自己尺寸设置,使它们在恣意尺寸的设备下自顺应占满剩余空间。


[*] https://i-blog.csdnimg.cn/direct/f085fea003924e0f8561f7d7d670a81f.png
横屏
https://i-blog.csdnimg.cn/direct/d75abc8f6ea848c1ae9c5d49f06a7c9c.png
竖屏
2. 父容器尺寸确定时,使用百分比设置子元素和兄弟元素的宽度,使他们在恣意尺寸的设备下保持固定的自顺应占比。
@Entry
@Component
struct WidthExample {
    build() {
      Column() {
            Row() {
                Column() {
                  Text('left width 20%')
                        .textAlign(TextAlign.Center)
                }.width('20%').backgroundColor(0xF5DEB3).height('100%')
                Column() {
                  Text('center width 50%')
                        .textAlign(TextAlign.Center)
                }.width('50%').backgroundColor(0xD2B48C).height('100%')
                Column() {
                  Text('right width 30%')
                        .textAlign(TextAlign.Center)
                }.width('30%').backgroundColor(0xF5DEB3).height('100%')
            }.backgroundColor(0xffd306).height('30%')
      }
    }
} https://i-blog.csdnimg.cn/direct/370b8bdf5ab24fd9adaa76d15dac7b46.png
横屏
https://i-blog.csdnimg.cn/direct/f299ae07e00a4fb5a83abe28597084fa.png
竖屏
自顺应延伸

自顺应延伸是指在不同尺寸设备下,当页面的内容超出屏幕巨细而无法完全显示时,可以通过滚动条举行拖动展示。这种方法适用于线性布局中内容无法一屏展示的场景。通常有以下两种实现方式。


[*] 在List中添加滚动条:当List子项目过多一屏放不下时,可以将每一个子元素放置在不同的组件中,通过滚动条举行拖动展示。可以通过scrollBar属性设置滚动条的常驻状态,edgeEffect属性设置拖动到内容最末端的回弹效果。
[*] 使用Scroll组件:在线性布局中,开发者可以举行垂直方向或者水平方向的布局。当一屏无法完全显示时,可以在Column或Row组件的外层包裹一个可滚动的容器组件Scroll来实现可滑动的线性布局。
垂直方向布局中使用Scroll组件:
[*] @Entry
@Component
struct ScrollExample {
    scroller: Scroller = new Scroller();
    private arr: number[] = ;

    build() {
      Scroll(this.scroller) {
            Column() {
                ForEach(this.arr, (item?:number|undefined) => {
                  if(item){
                        Text(item.toString())
                            .width('90%')
                            .height(150)
                            .backgroundColor(0xFFFFFF)
                            .borderRadius(15)
                            .fontSize(16)
                            .textAlign(TextAlign.Center)
                            .margin({ top: 10 })
                  }
                }, (item:number) => item.toString())
            }.width('100%')
      }
      .backgroundColor(0xDCDCDC)
      .scrollable(ScrollDirection.Vertical) // 滚动方向为垂直方向   
      .scrollBar(BarState.On) // 滚动条常驻显示
      .scrollBarColor(Color.Gray) // 滚动条颜色
      .scrollBarWidth(10) // 滚动条宽度
      .edgeEffect(EdgeEffect.Spring) // 滚动到边沿后回弹
    }
} https://i-blog.csdnimg.cn/direct/d6ba80bbbe0f43bb95194ad8876b70c4.png
水平方向布局中使用Scroll组件:
@Entry
@Component
struct ScrollExample {
    scroller: Scroller = new Scroller();
    private arr: number[] = ;

    build() {
      Scroll(this.scroller) {
            Row() {
                ForEach(this.arr, (item?:number|undefined) => {
                  if(item){
                        Text(item.toString())
                            .height('90%')
                            .width(150)
                            .backgroundColor(0xFFFFFF)
                            .borderRadius(15)
                            .fontSize(100)
                            .textAlign(TextAlign.Center)
                            .margin({ left: 10 })
                  }
                })
            }.height('100%')
      }
      .backgroundColor(0xDCDCDC)
      .scrollable(ScrollDirection.Horizontal) // 滚动方向为水平方向   
      .scrollBar(BarState.On) // 滚动条常驻显示   
      .scrollBarColor(Color.Gray) // 滚动条颜色   
      .scrollBarWidth(10) // 滚动条宽度   
      .edgeEffect(EdgeEffect.Spring) // 滚动到边沿后回弹
    }
} https://i-blog.csdnimg.cn/direct/ba287b4084c0488eb50da5085e5f127f.png





免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: 纯血鸿蒙ArkUI线性布局详解