位置设置

2024-01-22 12:26 更新

设置组件的对齐方式、布局方向和显示位置。

说明

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

属性

名称

参数类型

描述

align

Alignment

设置元素内容在元素绘制区域内的对齐方式。

默认值:Alignment.Center

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

direction

Direction

设置元素水平方向的布局。

默认值:Direction.Auto

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

position

Position

绝对定位,设置元素左上角相对于父容器左上角偏移位置。在布局容器中,设置该属性不影响父容器布局,仅在绘制时进行位置调整。

适用于置顶显示、悬浮按钮等组件在父容器中位置固定的场景。

markAnchor

Position

设置元素在位置定位时的锚点,以元素左上角作为基准点进行偏移。通常配合position和offset属性使用,单独使用时,效果类似offset

默认值:

{

x: 0,

y: 0

}

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

offset

Position

相对定位,设置元素相对于自身的偏移量。设置该属性,不影响父容器布局,仅在绘制时进行位置调整。

默认值:

{

x: 0,

y: 0

}

alignRules9+

{

left?: { anchor: string, align: HorizontalAlign };

right?: { anchor: string, align: HorizontalAlign };

middle?: { anchor: string, align: HorizontalAlign };

top?: { anchor: string, align: VerticalAlign };

bottom?: { anchor: string, align: VerticalAlign };

center?: { anchor: string, align: VerticalAlign }

}

指定相对容器的对齐规则。

- left:设置左对齐参数。

- right:设置右对齐参数。

- middle:设置横向居中对齐方式的参数。

- top:设置顶部对齐的参数。

- bottom:设置底部对齐的参数。

- center:设置纵向居中对齐方式的参数。

该接口支持在ArkTS卡片中使用。

说明:

- anchor:设置作为锚点的组件的id值。

- align:设置相对于锚点组件的对齐方式。

示例

示例1

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct PositionExample1 {
  5. build() {
  6. Column() {
  7. Column({ space: 10 }) {
  8. // 元素内容<元素宽高,设置内容在与元素内的对齐方式
  9. Text('align').fontSize(9).fontColor(0xCCCCCC).width('90%')
  10. Stack() {
  11. Text('First show in bottom end').height('65%').backgroundColor(0xD2B48C)
  12. Text('Second show in bottom end').backgroundColor(0xF5DEB3).opacity(0.9)
  13. }.width('90%').height(50).margin({ top: 5 }).backgroundColor(0xFFE4C4)
  14. .align(Alignment.BottomEnd)
  15. Stack() {
  16. Text('top start')
  17. }.width('90%').height(50).margin({ top: 5 }).backgroundColor(0xFFE4C4)
  18. .align(Alignment.TopStart)
  19. // 父容器设置direction为Direction.Ltr,子元素从左到右排列
  20. Text('direction').fontSize(9).fontColor(0xCCCCCC).width('90%')
  21. Row() {
  22. Text('1').height(50).width('25%').fontSize(16).backgroundColor(0xF5DEB3)
  23. Text('2').height(50).width('25%').fontSize(16).backgroundColor(0xD2B48C)
  24. Text('3').height(50).width('25%').fontSize(16).backgroundColor(0xF5DEB3)
  25. Text('4').height(50).width('25%').fontSize(16).backgroundColor(0xD2B48C)
  26. }
  27. .width('90%')
  28. .direction(Direction.Ltr)
  29. // 父容器设置direction为Direction.Rtl,子元素从右到左排列
  30. Row() {
  31. Text('1').height(50).width('25%').fontSize(16).backgroundColor(0xF5DEB3).textAlign(TextAlign.End)
  32. Text('2').height(50).width('25%').fontSize(16).backgroundColor(0xD2B48C).textAlign(TextAlign.End)
  33. Text('3').height(50).width('25%').fontSize(16).backgroundColor(0xF5DEB3).textAlign(TextAlign.End)
  34. Text('4').height(50).width('25%').fontSize(16).backgroundColor(0xD2B48C).textAlign(TextAlign.End)
  35. }
  36. .width('90%')
  37. .direction(Direction.Rtl)
  38. }
  39. }
  40. .width('100%').margin({ top: 5 })
  41. }
  42. }

示例2

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct PositionExample2 {
  5. build() {
  6. Column({ space: 20 }) {
  7. // 设置子组件左上角相对于父组件左上角的偏移位置
  8. Text('position').fontSize(12).fontColor(0xCCCCCC).width('90%')
  9. Row() {
  10. Text('1').size({ width: '30%', height: '50' }).backgroundColor(0xdeb887).border({ width: 1 }).fontSize(16)
  11. Text('2 position(30, 10)')
  12. .size({ width: '60%', height: '30' })
  13. .backgroundColor(0xbbb2cb)
  14. .border({ width: 1 })
  15. .fontSize(16)
  16. .align(Alignment.Start)
  17. .position({ x: 30, y: 10 })
  18. Text('3').size({ width: '45%', height: '50' }).backgroundColor(0xdeb887).border({ width: 1 }).fontSize(16)
  19. Text('4 position(50%, 70%)')
  20. .size({ width: '50%', height: '50' })
  21. .backgroundColor(0xbbb2cb)
  22. .border({ width: 1 })
  23. .fontSize(16)
  24. .position({ x: '50%', y: '70%' })
  25. }.width('90%').height(100).border({ width: 1, style: BorderStyle.Dashed })
  26. // 相对于起点偏移,其中x为最终定位点距离起点水平方向间距,x>0往左,反之向右。
  27. // y为最终定位点距离起点垂直方向间距,y>0向上,反之向下
  28. Text('markAnchor').fontSize(12).fontColor(0xCCCCCC).width('90%')
  29. Stack({ alignContent: Alignment.TopStart }) {
  30. Row()
  31. .size({ width: '100', height: '100' })
  32. .backgroundColor(0xdeb887)
  33. Text('text')
  34. .size({ width: 25, height: 25 })
  35. .backgroundColor(Color.Green)
  36. .markAnchor({ x: 25, y: 25 })
  37. Text('text')
  38. .size({ width: 25, height: 25 })
  39. .backgroundColor(Color.Green)
  40. .markAnchor({ x: -100, y: -25 })
  41. Text('text')
  42. .size({ width: 25, height: 25 })
  43. .backgroundColor(Color.Green)
  44. .markAnchor({ x: 25, y: -25 })
  45. }.margin({ top: 25 }).border({ width: 1, style: BorderStyle.Dashed })
  46. // 相对定位,x>0向右偏移,反之向左,y>0向下偏移,反之向上
  47. Text('offset').fontSize(12).fontColor(0xCCCCCC).width('90%')
  48. Row() {
  49. Text('1').size({ width: '15%', height: '50' }).backgroundColor(0xdeb887).border({ width: 1 }).fontSize(16)
  50. Text('2 offset(15, 30)')
  51. .size({ width: 120, height: '50' })
  52. .backgroundColor(0xbbb2cb)
  53. .border({ width: 1 })
  54. .fontSize(16)
  55. .align(Alignment.Start)
  56. .offset({ x: 15, y: 30 })
  57. Text('3').size({ width: '15%', height: '50' }).backgroundColor(0xdeb887).border({ width: 1 }).fontSize(16)
  58. Text('4 offset(-10%, 20%)')
  59. .size({ width: 100, height: '50' })
  60. .backgroundColor(0xbbb2cb)
  61. .border({ width: 1 })
  62. .fontSize(16)
  63. .offset({ x: '-5%', y: '20%' })
  64. }.width('90%').height(100).border({ width: 1, style: BorderStyle.Dashed })
  65. }
  66. .width('100%').margin({ top: 25 })
  67. }
  68. }

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

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号