当前位置:   article > 正文

鸿蒙Harmony应用开发—ArkTS声明式开发(基础手势:Progress)

鸿蒙Harmony应用开发—ArkTS声明式开发(基础手势:Progress)

进度条组件,用于显示内容加载或操作处理等进度。

说明:

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

子组件

接口

Progress(options: ProgressOptions<Type>)

创建进度组件,用于显示内容加载或操作处理进度。

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

参数:

参数名参数类型必填参数描述
optionsProgressOptions<Type>进度条组件参数。

ProgressOptions<Type>对象说明

参数名参数类型必填参数描述
valuenumber指定当前进度值。设置小于0的数值时置为0,设置大于total的数值时置为total。
从API version 9开始,该接口支持在ArkTS卡片中使用。
totalnumber指定进度总长。
默认值:100
从API version 9开始,该接口支持在ArkTS卡片中使用。
type8+ProgressType指定进度条类型。
默认值:ProgressType.Linear
从API version 9开始,该接口支持在ArkTS卡片中使用。
style(deprecated)ProgressStyle指定进度条样式。
该参数从API version8开始废弃,建议使用type替代。
默认值:ProgressStyle.Linear

ProgressType8+枚举说明

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

名称描述
Linear线性样式。从API version9开始,高度大于宽度的时候自适应垂直显示。
Ring环形无刻度样式,环形圆环逐渐显示至完全填充效果。
Eclipse圆形样式,显示类似月圆月缺的进度展示效果,从月牙逐渐变化至满月。
ScaleRing环形有刻度样式,显示类似时钟刻度形式的进度展示效果。从API version9开始,刻度外圈出现重叠的时候自动转换为环形无刻度进度条。
Capsule胶囊样式,头尾两端圆弧处的进度展示效果与Eclipse相同;中段处的进度展示效果与Linear相同。高度大于宽度的时候自适应垂直显示。

ProgressStyle枚举说明

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

名称描述
Linear线性样式。
Ring8+环形无刻度样式,环形圆环逐渐显示至完全填充效果。
Eclipse圆形样式,显示类似月圆月缺的进度展示效果,从月牙逐渐变化至满月。
ScaleRing8+环形有刻度样式,显示类似时钟刻度形式的进度展示效果。
Capsule8+胶囊样式,头尾两端圆弧处的进度展示效果与Eclipse相同;中段处的进度展示效果与Linear相同。高度大于宽度的时候自适应垂直显示。

属性

除支持通用属性外,还支持以下属性:

名称参数类型描述
valuenumber设置当前进度值。设置小于0的数值时置为0,设置大于total的数值时置为total。非法数值不生效。
从API version 9开始,该接口支持在ArkTS卡片中使用。
colorResourceColor | LinearGradient10+设置进度条前景色。
从API version 10开始支持利用LinearGradient设置Ring样式的渐变色。
默认值(API version 9):'#ff007dff'
默认值(API version 10):
- Capsule:'#33006cde'
- Ring:起始端:'#ff86c1ff',结束端:'#ff254ff7'
- 其他样式:'#ff007dff'
从API version 9开始,该接口支持在ArkTS卡片中使用,暂不支持LinearGradient。
backgroundColorResourceColor设置进度条底色。
默认值(API version 9):'#19182431'
默认值(API version 10):
- Capsule:'#33ffffff'
- Ring:'#08182431'
- 其他样式:'#19182431'
从API version 9开始,该接口支持在ArkTS卡片中使用。
说明:
当设置通用属性backgroundColor时,生效的是进度条的底色,而不是整个Progress组件的背景色。
style8+ProgressStyleOptions8+ | CapsuleStyleOptions10+ | RingStyleOptions10+ | LinearStyleOptions10+ | ScaleRingStyleOptions10+ | EclipseStyleOptions10+定义组件的样式。
从API version 10开始支持以下类型:
- CapsuleStyleOptions:设置Capsule的样式。
- RingStyleOptions:设置Ring的样式。
- LinearStyleOptions:设置Linear的样式。
- ScaleRingStyleOptions:设置ScaleRing的样式。
- EclipseStyleOptions:设置Eclipse的样式。
- ProgressStyleOptions:仅可设置各类型进度条的基本样式。
从API version 9开始,该接口支持在ArkTS卡片中设置ProgressStyleOptions,暂不支持其它的参数类型。

ProgressStyleOptions8+

名称参数类型必填描述
strokeWidthLength设置进度条宽度(不支持百分比设置)。
默认值:4.0vp
scaleCountnumber设置环形进度条总刻度数。
默认值:120
scaleWidthLength设置环形进度条刻度粗细(不支持百分比设置),刻度粗细大于进度条宽度时,为系统默认粗细。
默认值:2.0vp
enableSmoothEffect10+boolean进度平滑动效的开关。开启平滑动效后设置进度,进度会从当前值渐变至设定值,否则进度从当前值突变至设定值。
默认值:true

CapsuleStyleOptions10+

名称参数类型必填描述
borderColorResourceColor内描边颜色。
默认值:'#33006cde'
borderWidthLength内描边宽度(不支持百分比设置)。
默认值:1vp
contentstring文本内容,应用可自定义。
fontFont文本样式。
默认值:
- 文本大小(不支持百分比设置):12fp
其他文本参数跟随text组件的主题值。
fontColorResourceColor文本颜色。
默认值:'#ff182431'
enableScanEffectboolean扫光效果的开关。
默认值:false
showDefaultPercentageboolean显示百分比文本的开关,开启后会在进度条上显示当前进度的百分比。设置了content属性时该属性不生效。
默认值:false
enableSmoothEffectboolean进度平滑动效的开关。开启平滑动效后设置进度,进度会从当前值渐变至设定值,否则进度从当前值突变至设定值。
默认值:true

RingStyleOptions10+

名称参数类型必填描述
strokeWidthLength设置进度条宽度(不支持百分比设置),宽度大于等于半径时,默认修改宽度至半径值的二分之一。
默认值:4.0vp
shadowboolean进度条阴影开关。
默认值:false
statusProgressStatus10+进度条状态,当设置为LOADING时会开启检查更新动效,此时设置进度值不生效。当从LOADING设置为PROGRESSING,检查更新动效会执行到终点再停止。
默认值: ProgressStatus.PROGRESSING
enableScanEffectboolean进度条扫光效果的开关。
默认值: false
enableSmoothEffectboolean进度平滑动效的开关。开启平滑动效后设置进度,进度会从当前值渐变至设定值,否则进度从当前值突变至设定值。
默认值:true

LinearStyleOptions10+

名称参数类型必填描述
strokeWidthLength设置进度条宽度(不支持百分比设置)。
默认值:4.0vp
strokeRadiusPX | VP | LPX | Resource设置线性进度条圆角半径。
取值范围[0, strokeWidth / 2]。默认值:strokeWidth / 2。
enableScanEffectboolean进度条扫光效果的开关。
默认值: false
enableSmoothEffectboolean进度平滑动效的开关。开启平滑动效后设置进度,进度会从当前值渐变至设定值,否则进度从当前值突变至设定值。
默认值:true

ScaleRingStyleOptions10+

名称参数类型必填描述
strokeWidthLength设置进度条宽度(不支持百分比设置)。
默认值:4.0vp
scaleCountnumber设置环形进度条总刻度数。
默认值:120
scaleWidthLength设置环形进度条刻度粗细(不支持百分比设置),刻度粗细大于进度条宽度时,为系统默认粗细。
默认值:2.0vp
enableSmoothEffectboolean进度平滑动效的开关。开启平滑动效后设置进度,进度会从当前值渐变至设定值,否则进度从当前值突变至设定值。
默认值:true

EclipseStyleOptions10+

名称参数类型必填描述
enableSmoothEffectboolean进度平滑动效的开关。开启平滑动效后设置进度,进度会从当前值渐变至设定值,否则进度从当前值突变至设定值。
默认值:true

ProgressStatus10+枚举说明

名称描述
LOADING加载中。
PROGRESSING进度更新中。

事件

支持通用事件

示例

示例1

各进度条基础属性效果。

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct ProgressExample {
  5. build() {
  6. Column({ space: 15 }) {
  7. Text('Linear Progress').fontSize(9).fontColor(0xCCCCCC).width('90%')
  8. Progress({ value: 10, type: ProgressType.Linear }).width(200)
  9. Progress({ value: 20, total: 150, type: ProgressType.Linear }).color(Color.Grey).value(50).width(200)
  10. Text('Eclipse Progress').fontSize(9).fontColor(0xCCCCCC).width('90%')
  11. Row({ space: 40 }) {
  12. Progress({ value: 10, type: ProgressType.Eclipse }).width(100)
  13. Progress({ value: 20, total: 150, type: ProgressType.Eclipse }).color(Color.Grey).value(50).width(100)
  14. }
  15. Text('ScaleRing Progress').fontSize(9).fontColor(0xCCCCCC).width('90%')
  16. Row({ space: 40 }) {
  17. Progress({ value: 10, type: ProgressType.ScaleRing }).width(100)
  18. Progress({ value: 20, total: 150, type: ProgressType.ScaleRing })
  19. .color(Color.Grey).value(50).width(100)
  20. .style({ strokeWidth: 15, scaleCount: 15, scaleWidth: 5 })
  21. }
  22. // scaleCount和scaleWidth效果对比
  23. Row({ space: 40 }) {
  24. Progress({ value: 20, total: 150, type: ProgressType.ScaleRing })
  25. .color(Color.Grey).value(50).width(100)
  26. .style({ strokeWidth: 20, scaleCount: 20, scaleWidth: 5 })
  27. Progress({ value: 20, total: 150, type: ProgressType.ScaleRing })
  28. .color(Color.Grey).value(50).width(100)
  29. .style({ strokeWidth: 20, scaleCount: 30, scaleWidth: 3 })
  30. }
  31. Text('Ring Progress').fontSize(9).fontColor(0xCCCCCC).width('90%')
  32. Row({ space: 40 }) {
  33. Progress({ value: 10, type: ProgressType.Ring }).width(100)
  34. Progress({ value: 20, total: 150, type: ProgressType.Ring })
  35. .color(Color.Grey).value(50).width(100)
  36. .style({ strokeWidth: 20 })
  37. }
  38. Text('Capsule Progress').fontSize(9).fontColor(0xCCCCCC).width('90%')
  39. Row({ space: 40 }) {
  40. Progress({ value: 10, type: ProgressType.Capsule }).width(100).height(50)
  41. Progress({ value: 20, total: 150, type: ProgressType.Capsule })
  42. .color(Color.Grey)
  43. .value(50)
  44. .width(100)
  45. .height(50)
  46. }
  47. }.width('100%').margin({ top: 30 })
  48. }
  49. }

progress

示例2

环形进度条视觉属性。

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct ProgressExample {
  5. private gradientColor: LinearGradient = new LinearGradient([{ color: Color.Yellow, offset: 0.5 },
  6. { color: Color.Orange, offset: 1.0 }])
  7. build() {
  8. Column({ space: 15 }) {
  9. Text('Gradient Color').fontSize(9).fontColor(0xCCCCCC).width('90%')
  10. Progress({ value: 70, total: 100, type: ProgressType.Ring })
  11. .width(100).style({ strokeWidth: 20 })
  12. .color(this.gradientColor)
  13. Text('Shadow').fontSize(9).fontColor(0xCCCCCC).width('90%')
  14. Progress({ value: 70, total: 100, type: ProgressType.Ring })
  15. .width(120).color(Color.Orange)
  16. .style({ strokeWidth: 20, shadow: true })
  17. }.width('100%').padding({ top: 5 })
  18. }
  19. }

ringProgressStyleEffect

示例3

环形进度条动效。

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct ProgressExample {
  5. private gradientColor: LinearGradient = new LinearGradient([{ color: Color.Yellow, offset: 0.5 },
  6. { color: Color.Orange, offset: 1.0 }])
  7. build() {
  8. Column({ space: 15 }) {
  9. Text('Loading Effect').fontSize(9).fontColor(0xCCCCCC).width('90%')
  10. Progress({ value: 0, total: 100, type: ProgressType.Ring })
  11. .width(100).color(Color.Blue)
  12. .style({ strokeWidth: 20, status: ProgressStatus.LOADING })
  13. Text('Scan Effect').fontSize(9).fontColor(0xCCCCCC).width('90%')
  14. Progress({ value: 30, total: 100, type: ProgressType.Ring })
  15. .width(100).color(Color.Orange)
  16. .style({ strokeWidth: 20, enableScanEffect: true })
  17. }.width('100%').padding({ top: 5 })
  18. }
  19. }

ringProgressAnimation

示例4

胶囊形进度条视觉属性。

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct ProgressExample {
  5. build() {
  6. Column({ space: 15 }) {
  7. Row({ space: 40 }) {
  8. Progress({ value: 100, total: 100,type: ProgressType.Capsule }).width(100).height(50)
  9. .style({borderColor: Color.Blue, borderWidth: 1, content: 'Installing...',
  10. font: {size: 13, style: FontStyle.Normal}, fontColor: Color.Gray,
  11. enableScanEffect: false, showDefaultPercentage: false})
  12. }
  13. }.width('100%').padding({ top: 5 })
  14. }
  15. }

capsuleProgressStyleEffect

示例5

进度平滑动效。

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct Index {
  5. @State value: number = 0
  6. build() {
  7. Column({space: 10}) {
  8. Text('enableSmoothEffect: true').fontSize(9).fontColor(0xCCCCCC).width('90%').margin(5)
  9. .margin({top: 20})
  10. Progress({value: this.value, total: 100, type:ProgressType.Linear})
  11. .style({strokeWidth: 10, enableSmoothEffect: true})
  12. Text('enableSmoothEffect: false').fontSize(9).fontColor(0xCCCCCC).width('90%').margin(5)
  13. Progress({value: this.value, total: 100, type:ProgressType.Linear})
  14. .style({strokeWidth: 10, enableSmoothEffect: false})
  15. Button('value +10').onClick(() => {
  16. this.value += 10
  17. })
  18. .width(75)
  19. .height(15)
  20. .fontSize(9)
  21. }
  22. .width('50%')
  23. .height('100%')
  24. .margin({left:20})
  25. }
  26. }

progressSmoothEffect

最后,有很多小伙伴不知道学习哪些鸿蒙开发技术?不知道需要重点掌握哪些鸿蒙应用开发知识点?而且学习时频繁踩坑,最终浪费大量时间。所以有一份实用的鸿蒙(Harmony NEXT)资料用来跟着学习是非常有必要的。 

这份鸿蒙(Harmony NEXT)资料包含了鸿蒙开发必掌握的核心知识要点,内容包含了ArkTS、ArkUI开发组件、Stage模型、多端部署、分布式应用开发、音频、视频、WebGL、OpenHarmony多媒体技术、Napi组件、OpenHarmony内核、Harmony南向开发、鸿蒙项目实战等等)鸿蒙(Harmony NEXT)技术知识点。

希望这一份鸿蒙学习资料能够给大家带来帮助,有需要的小伙伴自行领取,限时开源,先到先得~无套路领取!!

获取这份完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料

腾讯T10级高工技术,安卓全套VIP内容 →Android全套学习资料

腾讯T10级高工技术,安卓全套VIP课程

鸿蒙(Harmony NEXT)最新学习路线

  •  HarmonOS基础技能

  • HarmonOS就业必备技能 
  •  HarmonOS多媒体技术

  • 鸿蒙NaPi组件进阶

  • HarmonOS高级技能

  • 初识HarmonOS内核 
  • 实战就业级设备开发

有了路线图,怎么能没有学习资料呢,小编也准备了一份联合鸿蒙官方发布笔记整理收纳的一套系统性的鸿蒙(OpenHarmony )学习手册(共计1236页)鸿蒙(OpenHarmony )开发入门教学视频,内容包含:ArkTS、ArkUI、Web开发、应用模型、资源分类…等知识点。

获取以上完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料

《鸿蒙 (OpenHarmony)开发入门教学视频》

《鸿蒙生态应用开发V2.0白皮书》

图片

《鸿蒙 (OpenHarmony)开发基础到实战手册》

OpenHarmony北向、南向开发环境搭建

图片

 《鸿蒙开发基础》

  • ArkTS语言
  • 安装DevEco Studio
  • 运用你的第一个ArkTS应用
  • ArkUI声明式UI开发
  • .……

图片

 《鸿蒙开发进阶》

  • Stage模型入门
  • 网络管理
  • 数据管理
  • 电话服务
  • 分布式应用开发
  • 通知与窗口管理
  • 多媒体技术
  • 安全技能
  • 任务管理
  • WebGL
  • 国际化开发
  • 应用测试
  • DFX面向未来设计
  • 鸿蒙系统移植和裁剪定制
  • ……

图片

《鸿蒙进阶实战》

  • ArkTS实践
  • UIAbility应用
  • 网络案例
  • ……

图片

 获取以上完整鸿蒙HarmonyOS学习资料,请点击→纯血版全套鸿蒙HarmonyOS学习资料

总结

总的来说,华为鸿蒙不再兼容安卓,对中年程序员来说是一个挑战,也是一个机会。只有积极应对变化,不断学习和提升自己,他们才能在这个变革的时代中立于不败之地。 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/226922
推荐阅读
相关标签
  

闽ICP备14008679号