ts-universal-attributes-location.md 7.2 KB
Newer Older
Z
zengyawen 已提交
1
# 位置设置
Z
zengyawen 已提交
2

T
explain  
tianyu 已提交
3 4
设置组件的对齐方式、布局方向和显示位置。

H
geshi  
HelloCrease 已提交
5
>  **说明:**
S
sienna1128 已提交
6 7
>
>  从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
Z
zengyawen 已提交
8

Z
zengyawen 已提交
9 10 11 12

## 属性


S
sienna1128 已提交
13 14
| 名称 | 参数类型 | 描述 |
| -------- | -------- | -------- |
L
luoying_ace_admin 已提交
15
| align | [Alignment](ts-appendix-enums.md#alignment) | 设置元素内容在元素绘制区域内的对齐方式。<br/>默认值:Alignment.Center |
S
sienna1128 已提交
16
| direction | [Direction](ts-appendix-enums.md#direction) | 设置元素水平方向的布局。<br/>默认值:Direction.Auto |
S
sienna1128 已提交
17
| position | [Position](ts-types.md#position8) | 绝对定位,设置元素左上角相对于父容器左上角偏移位置。在布局容器中,设置该属性不影响父容器布局,仅在绘制时进行位置调整。 |
S
sienna1128 已提交
18
| markAnchor | [Position](ts-types.md#position8) | 设置元素在位置定位时的锚点,以元素左上角作为基准点进行偏移。通常配合position和offset属性使用,单独使用时,效果类似offset<br/>默认值:<br/>{<br/>x: 0,<br/>y: 0<br/>} |
S
sienna1128 已提交
19
| offset | [Position](ts-types.md#position8) | 相对定位,设置元素相对于自身的偏移量。设置该属性,不影响父容器布局,仅在绘制时进行位置调整。<br/>默认值:<br/>{<br/>x: 0,<br/>y: 0<br/>} |
S
sienna1128 已提交
20
| alignRules<sup>9+</sup> | {<br/>left?: { anchor: string, align: [HorizontalAlign](ts-appendix-enums.md#horizontalalign) };<br/>right?: { anchor: string, align: [HorizontalAlign](ts-appendix-enums.md#horizontalalign) };<br/>middle?: { anchor: string, align: [HorizontalAlign](ts-appendix-enums.md#horizontalalign) };<br/>top?: { anchor: string, align: [VerticalAlign](ts-appendix-enums.md#verticalalign) };<br/>bottom?: { anchor: string, align: [VerticalAlign](ts-appendix-enums.md#verticalalign) };<br/>center?: { anchor: string, align: [VerticalAlign](ts-appendix-enums.md#verticalalign) }<br/>} | 指定相对容器的对齐规则。<br/>-&nbsp;left:设置左对齐参数。<br/>-&nbsp;right:设置右对齐参数。<br/>-&nbsp;middle:设置中间对齐的参数。<br/>-&nbsp;top:设置顶部对齐的参数。<br/>-&nbsp;bottom:设置底部对齐的参数。<br/>-&nbsp;center:设置中心对齐的参数。<br/>**说明:**<br/>-&nbsp;anchor:设置作为锚点的组件的id值。<br>-&nbsp;align:设置相对于锚点组件的对齐方式。 |
Z
zengyawen 已提交
21 22 23


## 示例
S
sienna1128 已提交
24
### 示例1
H
geshi  
HelloCrease 已提交
25 26
```ts
// xxx.ets
Z
zengyawen 已提交
27 28
@Entry
@Component
S
sienna1128 已提交
29
struct PositionExample1 {
Z
zengyawen 已提交
30 31
  build() {
    Column() {
S
sienna1128 已提交
32 33
      Column({ space: 10 }) {
        // 元素内容<元素宽高,设置内容在与元素内的对齐方式
Z
zengyawen 已提交
34 35 36 37 38 39 40 41
        Text('align').fontSize(9).fontColor(0xCCCCCC).width('90%')
        Text('top start')
          .align(Alignment.TopStart)
          .height(50)
          .width('90%')
          .fontSize(16)
          .backgroundColor(0xFFE4C4)

S
sienna1128 已提交
42 43
        Text('Bottom end')
          .align(Alignment.BottomEnd)
Y
yamila 已提交
44
          .textAlign(TextAlign.End)
S
sienna1128 已提交
45 46 47 48 49
          .height(50)
          .width('90%')
          .fontSize(16)
          .backgroundColor(0xFFE4C4)

Y
yamila 已提交
50
        // 父容器设置direction为Direction.Ltr,子元素从左到右排列
Z
zengyawen 已提交
51 52 53 54 55 56 57 58
        Text('direction').fontSize(9).fontColor(0xCCCCCC).width('90%')
        Row() {
          Text('1').height(50).width('25%').fontSize(16).backgroundColor(0xF5DEB3)
          Text('2').height(50).width('25%').fontSize(16).backgroundColor(0xD2B48C)
          Text('3').height(50).width('25%').fontSize(16).backgroundColor(0xF5DEB3)
          Text('4').height(50).width('25%').fontSize(16).backgroundColor(0xD2B48C)
        }
        .width('90%')
Y
yamila 已提交
59
        .direction(Direction.Ltr)
S
sienna1128 已提交
60 61
        // 父容器设置direction为Direction.Rtl,子元素从右到左排列
        Row() {
62 63 64 65
          Text('1').height(50).width('25%').fontSize(16).backgroundColor(0xF5DEB3).textAlign(TextAlign.End)
          Text('2').height(50).width('25%').fontSize(16).backgroundColor(0xD2B48C).textAlign(TextAlign.End)
          Text('3').height(50).width('25%').fontSize(16).backgroundColor(0xF5DEB3).textAlign(TextAlign.End)
          Text('4').height(50).width('25%').fontSize(16).backgroundColor(0xD2B48C).textAlign(TextAlign.End)
S
sienna1128 已提交
66 67
        }
        .width('90%')
Z
zengyawen 已提交
68 69 70
        .direction(Direction.Rtl)
      }
    }
71
    .width('100%').margin({ top: 5 })
Z
zengyawen 已提交
72 73 74 75
  }
}
```

S
sienna1128 已提交
76
![align.png](figures/align.png)
Z
zengyawen 已提交
77

S
sienna1128 已提交
78
### 示例2
H
geshi  
HelloCrease 已提交
79 80
```ts
// xxx.ets
Z
zengyawen 已提交
81 82 83 84 85
@Entry
@Component
struct PositionExample2 {
  build() {
    Column({ space: 20 }) {
S
sienna1128 已提交
86
      // 设置子组件左上角相对于父组件左上角的偏移位置
Z
zengyawen 已提交
87
      Text('position').fontSize(12).fontColor(0xCCCCCC).width('90%')
S
sienna1128 已提交
88 89 90 91 92 93 94 95 96
      Row() {
        Text('1').size({ width: '30%', height: '50' }).backgroundColor(0xdeb887).border({ width: 1 }).fontSize(16)
        Text('2 position(30, 10)')
          .size({ width: '60%', height: '30' })
          .backgroundColor(0xbbb2cb)
          .border({ width: 1 })
          .fontSize(16)
          .align(Alignment.Start)
          .position({ x: 30, y: 10 })
Z
zengyawen 已提交
97 98
        Text('3').size({ width: '45%', height: '50' }).backgroundColor(0xdeb887).border({ width: 1 }).fontSize(16)
        Text('4 position(50%, 70%)')
S
sienna1128 已提交
99 100 101 102
          .size({ width: '50%', height: '50' })
          .backgroundColor(0xbbb2cb)
          .border({ width: 1 })
          .fontSize(16)
Z
zengyawen 已提交
103 104 105
          .position({ x: '50%', y: '70%' })
      }.width('90%').height(100).border({ width: 1, style: BorderStyle.Dashed })

S
sienna1128 已提交
106 107
      // 相对于起点偏移,其中x为最终定位点距离起点水平方向间距,x>0往左,反之向右。
      // y为最终定位点距离起点垂直方向间距,y>0向上,反之向下
Z
zengyawen 已提交
108 109 110 111 112
      Text('markAnchor').fontSize(12).fontColor(0xCCCCCC).width('90%')
      Stack({ alignContent: Alignment.TopStart }) {
        Row()
          .size({ width: '100', height: '100' })
          .backgroundColor(0xdeb887)
S
sienna1128 已提交
113
        Text('text')
Z
zengyawen 已提交
114
          .size({ width: 25, height: 25 })
S
sienna1128 已提交
115
          .backgroundColor(Color.Green)
Z
zengyawen 已提交
116
          .markAnchor({ x: 25, y: 25 })
S
sienna1128 已提交
117
        Text('text')
Z
zengyawen 已提交
118
          .size({ width: 25, height: 25 })
S
sienna1128 已提交
119 120 121 122 123 124
          .backgroundColor(Color.Green)
          .markAnchor({ x: -100, y: -25 })
        Text('text')
          .size({ width: 25, height: 25 })
          .backgroundColor(Color.Green)
          .markAnchor({ x: 25, y: -25 })
Z
zengyawen 已提交
125 126
      }.margin({ top: 25 }).border({ width: 1, style: BorderStyle.Dashed })

S
sienna1128 已提交
127
      // 相对定位,x>0向右偏移,反之向左,y>0向下偏移,反之向上
Z
zengyawen 已提交
128 129 130
      Text('offset').fontSize(12).fontColor(0xCCCCCC).width('90%')
      Row() {
        Text('1').size({ width: '15%', height: '50' }).backgroundColor(0xdeb887).border({ width: 1 }).fontSize(16)
S
sienna1128 已提交
131 132 133 134 135 136 137
        Text('2  offset(15, 30)')
          .size({ width: 120, height: '50' })
          .backgroundColor(0xbbb2cb)
          .border({ width: 1 })
          .fontSize(16)
          .align(Alignment.Start)
          .offset({ x: 15, y: 30 })
Z
zengyawen 已提交
138
        Text('3').size({ width: '15%', height: '50' }).backgroundColor(0xdeb887).border({ width: 1 }).fontSize(16)
S
sienna1128 已提交
139
        Text('4 offset(-10%, 20%)')
S
sienna1128 已提交
140 141 142 143 144
          .size({ width: 100, height: '50' })
          .backgroundColor(0xbbb2cb)
          .border({ width: 1 })
          .fontSize(16)
          .offset({ x: '-5%', y: '20%' })
Z
zengyawen 已提交
145 146 147 148 149 150 151
      }.width('90%').height(100).border({ width: 1, style: BorderStyle.Dashed })
    }
    .width('100%').margin({ top: 25 })
  }
}
```

S
sienna1128 已提交
152
![position.png](figures/position.png)