ts-universal-attributes-size.md 4.5 KB
Newer Older
Z
zengyawen 已提交
1
# 尺寸设置
Z
zengyawen 已提交
2

S
sienna1128 已提交
3
用于设置组件的宽高、边距。
T
explain  
tianyu 已提交
4

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


Z
zengyawen 已提交
10 11 12
## 属性


S
sienna1128 已提交
13 14 15 16 17 18
| 名称             | 参数说明                                     | 描述                                       |
| -------------- | ---------------------------------------- | ---------------------------------------- |
| width          | [Length](ts-types.md#length)             | 设置组件自身的宽度,缺省时使用元素自身内容需要的宽度。若子组件的宽大于父组件的宽,则会画出父组件的范围。              |
| height         | [Length](ts-types.md#length)             | 设置组件自身的高度,缺省时使用元素自身内容需要的高度。若子组件的高大于父组件的高,则会画出父组件的范围。              |
| size           | {<br/>width?:&nbsp;[Length](ts-types.md#length),<br/>height?:&nbsp;[Length](ts-types.md#length)<br/>} | 设置高宽尺寸。                                  |
| padding        | [Padding](ts-types.md#padding)&nbsp;\|&nbsp;[Length](ts-types.md#length) | 设置内边距属性,默认无内边距。<br/>参数为Length类型时,上下左右内边距同时生效。 <br/>参数为Padding对象时,可以分别设置上下左右的内边距。<br/>当padding设置百分比时,上下左右内边距均以父容器的width作为基础值。 |
S
sienna1128 已提交
19
| margin         | [Margin](ts-types.md#margin)&nbsp;\|&nbsp;[Length](ts-types.md#length)  | 设置外边距属性,默认无外边距。<br/>参数为Length类型时,上下左右外边距同时生效。<br/>参数为Margin对象时,可以分别设置上下左右的外边距。<br/>margin设置百分比时,上下左右外边距均以父容器的width作为基础值。|
S
sienna1128 已提交
20 21
| constraintSize | {<br/>minWidth?:&nbsp;[Length](ts-types.md#length),<br/>maxWidth?:&nbsp;[Length](ts-types.md#length),<br/>minHeight?:&nbsp;[Length](ts-types.md#length),<br/>maxHeight?:&nbsp;[Length](ts-types.md#length)<br/>} | 设置约束尺寸,组件布局时,进行尺寸范围限制。constraintSize的优先级高于Width和Height。<br>默认值:<br>{<br/>minWidth:&nbsp;0,<br/>maxWidth:&nbsp;Infinity,<br/>minHeight:&nbsp;0,<br/>maxHeight:&nbsp;Infinity<br/>} |
| layoutWeight   | number&nbsp;\|&nbsp;string               | 父容器尺寸确定时,设置了layoutWeight属性的子元素与兄弟元素占主轴尺寸按照权重进行分配,忽略元素本身尺寸设置,表示自适应占满剩余空间。<br>**说明:**<br/>仅在Row/Column/Flex布局中生效。|
Z
zengyawen 已提交
22

Z
zengyawen 已提交
23 24

## 示例
Z
zengyawen 已提交
25

H
geshi  
HelloCrease 已提交
26 27
```ts
// xxx.ets
Z
zengyawen 已提交
28 29 30 31 32 33 34
@Entry
@Component
struct SizeExample {
  build() {
    Column({ space: 10 }) {
      Text('margin and padding:').fontSize(12).fontColor(0xCCCCCC).width('90%')
      Row() {
S
sienna1128 已提交
35
        // 宽度80 ,高度80 ,外边距20(蓝色区域),内边距10(白色区域)
Z
zengyawen 已提交
36
        Row() {
S
sienna1128 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49
          Row().size({ width: '100%', height: '100%' }).backgroundColor(Color.Yellow)
        }
        .width(80)
        .height(80)
        .padding(10)
        .margin(20)
        .backgroundColor(Color.White)
      }.backgroundColor(Color.Blue)

      Text('constraintSize').fontSize(12).fontColor(0xCCCCCC).width('90%')
      Text('this is a Text.this is a Text.this is a Text.this is a Text.this is a Text.this is a Text.this is a Text.this is a Text.this is a Text.this is a Text.this is a Text.this is a Text.this is a Text.this is a Text.this is a Text')
        .width('90%')
        .constraintSize({ maxWidth: 200 })
Z
zengyawen 已提交
50 51

      Text('layoutWeight').fontSize(12).fontColor(0xCCCCCC).width('90%')
S
sienna1128 已提交
52
      // 父容器尺寸确定时,设置了layoutWeight的子元素在主轴布局尺寸按照权重进行分配,忽略本身尺寸设置。
Z
zengyawen 已提交
53
      Row() {
S
sienna1128 已提交
54
        // 权重1,占主轴剩余空间1/3
Z
zengyawen 已提交
55 56 57
        Text('layoutWeight(1)')
          .size({ width: '30%', height: 110 }).backgroundColor(0xFFEFD5).textAlign(TextAlign.Center)
          .layoutWeight(1)
S
sienna1128 已提交
58
        // 权重2,占主轴剩余空间2/3
Z
zengyawen 已提交
59 60 61
        Text('layoutWeight(2)')
          .size({ width: '30%', height: 110 }).backgroundColor(0xF5DEB3).textAlign(TextAlign.Center)
          .layoutWeight(2)
S
sienna1128 已提交
62
        // 未设置layoutWeight属性,组件按照自身尺寸渲染
Z
zengyawen 已提交
63 64 65 66
        Text('no layoutWeight')
          .size({ width: '30%', height: 110 }).backgroundColor(0xD2B48C).textAlign(TextAlign.Center)
      }.size({ width: '90%', height: 140 }).backgroundColor(0xAFEEEE)
    }.width('100%').margin({ top: 5 })
S
sienna1128 已提交
67 68
  }
}
Z
zengyawen 已提交
69 70
```

S
sienna1128 已提交
71
![size](figures/size.png)