ts-basic-components-loadingprogress.md 947 字节
Newer Older
Y
yaoyuchi 已提交
1 2
# LoadingProgress

T
explain  
tianyu 已提交
3 4
用于显示加载动效的组件。

H
geshi  
HelloCrease 已提交
5
>  **说明:**
6
>
Y
yaoyuchi 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20
> 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。


## 子组件




## 接口

LoadingProgress()

创建加载进展组件。

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

Y
yaoyuchi 已提交
23 24
## 属性

G
gmy 已提交
25 26
| 名称 | 参数类型 | 描述 |
| -------- | -------- | -------- |
27
| color | [ResourceColor](ts-types.md#resourcecolor) | 设置加载进度条前景色。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
Y
yaoyuchi 已提交
28 29 30

## 示例

H
geshi  
HelloCrease 已提交
31 32
```ts
// xxx.ets
Y
yaoyuchi 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45
@Entry
@Component
struct LoadingProgressExample {
  build() {
    Column({ space: 5 }) {
      Text('Orbital LoadingProgress ').fontSize(9).fontColor(0xCCCCCC).width('90%')
      LoadingProgress()
        .color(Color.Blue)
    }.width('100%').margin({ top: 5 })
  }
}
```

Y
yamila 已提交
46
![loadProgress](figures/loadProgress.jpeg)