ts-basic-components-button.md 5.3 KB
Newer Older
Z
zengyawen 已提交
1 2
# Button

T
explain  
tianyu 已提交
3 4
按钮组件,可快速创建不同样式的按钮。

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

Z
zengyawen 已提交
9

Z
zengyawen 已提交
10
## 子组件
Z
zengyawen 已提交
11

Z
zhongyuyan 已提交
12
可以包含单个子组件。
Z
zengyawen 已提交
13

Z
zengyawen 已提交
14 15 16

## 接口

H
hebingxue 已提交
17
**方法1:** Button(options?: {type?: ButtonType, stateEffect?: boolean})
18

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

H
hebingxue 已提交
21
**参数:**
Z
zengyawen 已提交
22

H
hebingxue 已提交
23 24
| 参数名         | 参数类型       | 必填        | 参数描述                              |
| ----------- | ---------- | ------| --------------------------------- |
25 26
| type        | ButtonType | 否    | 描述按钮显示样式。<br/>默认值:ButtonType.Capsule                           |
| stateEffect | boolean    | 否    |  按钮按下时是否开启按压态显示效果,当设置为false时,按压效果关闭。<br/>默认值:true |
Z
zengyawen 已提交
27

28

29
**方法2:** Button(label?: ResourceStr, options?: { type?: ButtonType, stateEffect?: boolean })
30

Z
zengyawen 已提交
31 32
  使用文本内容创建相应的按钮组件,此时Button无法包含子组件。

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

H
hebingxue 已提交
35
**参数:**
36

Y
yamila 已提交
37 38 39 40
| 参数名     | 参数类型                                | 必填   | 参数描述          |
| ------- | ----------------------------------- | ---- | ------------- |
| label   | [ResourceStr](ts-types.md#resourcestr) | 否    | 按钮文本内容。       |
| options | { type?: ButtonType, stateEffect?: boolean }   | 否    | 见方法1参数说明。 |
Z
zengyawen 已提交
41 42 43 44


## 属性

H
hebingxue 已提交
45 46
| 名称          | 参数类型           | 描述                                |
| ----------- | ----------- | --------------------------------- |
47 48
| type        | ButtonType  | 设置Button样式。<br/>默认值:ButtonType.Capsule<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| stateEffect | boolean     | 按钮按下时是否开启按压态显示效果,当设置为false时,按压效果关闭。<br/>默认值:true<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
H
hebingxue 已提交
49 50

## ButtonType枚举说明
51 52 53

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

H
hebingxue 已提交
54 55 56 57 58
| 名称      | 描述                 |
| ------- | ------------------ |
| Capsule | 胶囊型按钮(圆角默认为高度的一半)。 |
| Circle  | 圆形按钮。              |
| Normal  | 普通按钮(默认不带圆角)。      |
Z
zengyawen 已提交
59

H
geshi  
HelloCrease 已提交
60
>  **说明:**
Z
zhangxiao150 已提交
61
>  - 按钮圆角通过[通用属性borderRadius](ts-universal-attributes-border.md)设置(不支持通过border接口设置圆角),且只支持设置一个相同的圆角。
62 63 64
>  - 当按钮类型为Capsule时,borderRadius设置不生效,按钮圆角始终为高度的一半。
>  - 当按钮类型为Circle时,borderRadius即为按钮半径,若未设置borderRadius按钮半径则为宽、高中较小值的一半。
>  - 按钮文本通过[通用文本样式](ts-universal-attributes-text-style.md)进行设置。
Z
zengyawen 已提交
65 66 67


## 示例
Z
zengyawen 已提交
68

H
geshi  
HelloCrease 已提交
69 70
```ts
// xxx.ets
Z
zengyawen 已提交
71 72 73 74 75
@Entry
@Component
struct ButtonExample {
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Start, justifyContent: FlexAlign.SpaceBetween }) {
76
      Text('Normal button').fontSize(9).fontColor(0xCCCCCC)
Z
zengyawen 已提交
77
      Flex({ alignItems: ItemAlign.Center, justifyContent: FlexAlign.SpaceBetween }) {
78
        Button('OK', { type: ButtonType.Normal, stateEffect: true }).borderRadius(8).backgroundColor(0x317aff).width(90)
Z
zengyawen 已提交
79 80
        Button({ type: ButtonType.Normal, stateEffect: true }) {
          Row() {
81
            LoadingProgress().width(20).height(20).margin({ left: 12 }).color(0xFFFFFF)
Z
zengyawen 已提交
82 83
            Text('loading').fontSize(12).fontColor(0xffffff).margin({ left: 5, right: 12 })
          }.alignItems(VerticalAlign.Center)
84 85 86
        }.borderRadius(8).backgroundColor(0x317aff).width(90).height(40)

        Button('Disable', { type: ButtonType.Normal, stateEffect: false }).opacity(0.4)
Z
zengyawen 已提交
87 88 89 90 91
          .borderRadius(8).backgroundColor(0x317aff).width(90)
      }

      Text('Capsule button').fontSize(9).fontColor(0xCCCCCC)
      Flex({ alignItems: ItemAlign.Center, justifyContent: FlexAlign.SpaceBetween }) {
92
        Button('OK', { type: ButtonType.Capsule, stateEffect: true }).backgroundColor(0x317aff).width(90)
Z
zengyawen 已提交
93 94
        Button({ type: ButtonType.Capsule, stateEffect: true }) {
          Row() {
95
            LoadingProgress().width(20).height(20).margin({ left: 12 }).color(0xFFFFFF)
Z
zengyawen 已提交
96
            Text('loading').fontSize(12).fontColor(0xffffff).margin({ left: 5, right: 12 })
97
          }.alignItems(VerticalAlign.Center).width(90).height(40)
Z
zengyawen 已提交
98
        }.backgroundColor(0x317aff)
99 100

        Button('Disable', { type: ButtonType.Capsule, stateEffect: false }).opacity(0.4)
Z
zengyawen 已提交
101 102 103 104 105 106
          .backgroundColor(0x317aff).width(90)
      }

      Text('Circle button').fontSize(9).fontColor(0xCCCCCC)
      Flex({ alignItems: ItemAlign.Center, wrap: FlexWrap.Wrap }) {
        Button({ type: ButtonType.Circle, stateEffect: true }) {
107
          LoadingProgress().width(20).height(20).color(0xFFFFFF)
Z
zengyawen 已提交
108
        }.width(55).height(55).backgroundColor(0x317aff)
109

Z
zengyawen 已提交
110
        Button({ type: ButtonType.Circle, stateEffect: true }) {
111
          LoadingProgress().width(20).height(20).color(0xFFFFFF)
Z
zengyawen 已提交
112 113 114 115 116 117 118
        }.width(55).height(55).margin({ left: 20 }).backgroundColor(0xF55A42)
      }
    }.height(400).padding({ left: 35, right: 35, top: 35 })
  }
}
```

Y
yamila 已提交
119
![button](figures/button.gif)