codecamp

沿垂直方向布局的容器

说明

该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。

子组件

可以包含子组件。

接口

Column(value?: {space?: string | number})

从API version 9开始,该接口支持在ArkTS卡片中使用。

参数:

参数名

参数类型

必填

参数描述

space

string | number

纵向布局元素垂直方向间距。

从API version 9开始,space为负数或者justifyContent设置为FlexAlign.SpaceBetween、FlexAlign.SpaceAround、FlexAlign.SpaceEvenly时不生效。

默认值:0

说明:

可选值为大于等于0的数字,或者可以转换为数字的字符串。

属性

除支持通用属性外,还支持以下属性:

名称

参数类型

描述

alignItems

HorizontalAlign

设置子组件在水平方向上的对齐格式。

默认值:HorizontalAlign.Center

从API version 9开始,该接口支持在ArkTS卡片中使用。

justifyContent8+

FlexAlign

设置子组件在垂直方向上的对齐格式。

默认值:FlexAlign.Start

从API version 9开始,该接口支持在ArkTS卡片中使用。

示例

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct ColumnExample {
  5. build() {
  6. Column({ space: 5 }) {
  7. // 设置子元素垂直方向间距为5
  8. Text('space').width('90%')
  9. Column({ space: 5 }) {
  10. Column().width('100%').height(30).backgroundColor(0xAFEEEE)
  11. Column().width('100%').height(30).backgroundColor(0x00FFFF)
  12. }.width('90%').height(100).border({ width: 1 })
  13. // 设置子元素水平方向对齐方式
  14. Text('alignItems(Start)').width('90%')
  15. Column() {
  16. Column().width('50%').height(30).backgroundColor(0xAFEEEE)
  17. Column().width('50%').height(30).backgroundColor(0x00FFFF)
  18. }.alignItems(HorizontalAlign.Start).width('90%').border({ width: 1 })
  19. Text('alignItems(End)').width('90%')
  20. Column() {
  21. Column().width('50%').height(30).backgroundColor(0xAFEEEE)
  22. Column().width('50%').height(30).backgroundColor(0x00FFFF)
  23. }.alignItems(HorizontalAlign.End).width('90%').border({ width: 1 })
  24. Text('alignItems(Center)').width('90%')
  25. Column() {
  26. Column().width('50%').height(30).backgroundColor(0xAFEEEE)
  27. Column().width('50%').height(30).backgroundColor(0x00FFFF)
  28. }.alignItems(HorizontalAlign.Center).width('90%').border({ width: 1 })
  29. // 设置子元素垂直方向的对齐方式
  30. Text('justifyContent(Center)').width('90%')
  31. Column() {
  32. Column().width('90%').height(30).backgroundColor(0xAFEEEE)
  33. Column().width('90%').height(30).backgroundColor(0x00FFFF)
  34. }.height(100).border({ width: 1 }).justifyContent(FlexAlign.Center)
  35. Text('justifyContent(End)').width('90%')
  36. Column() {
  37. Column().width('90%').height(30).backgroundColor(0xAFEEEE)
  38. Column().width('90%').height(30).backgroundColor(0x00FFFF)
  39. }.height(100).border({ width: 1 }).justifyContent(FlexAlign.End)
  40. }.width('100%').padding({ top: 5 })
  41. }
  42. }

信息标记的容器组件
将子组件纵向布局
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

媒体组件

像素

枚举

类型

接口

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }