HarmonyOS 鸿蒙Next ArkTS语言教程入门学习第81天,进度条(Progress)
HarmonyOS 鸿蒙Next ArkTS语言教程入门学习第81天,进度条(Progress)
1、进度条(Progress)
Progress是进度条显示组件,显示内容通常为某次目标操作的当前进度。具体用法请参考Progress。
2、创建进度条
Progress通过调用接口来创建,接口调用形式如下:
Progress({
value: number,
total?: number,
type?: ProgressType
})
该接口用于创建type样式的进度条,其中value用于设置初始进度值,total用于设置进度总长度,type决定Progress样式。
Progress({ value: 24, total: 100, type: ProgressType.Linear }) // 创建一个进度总长为100,初始进度值为24的线性进度条
3、设置进度条样式
Progress有5种可选类型,在创建时通过设置ProgressType枚举类型给type可选项指定Progress类型。其分别为:ProgressType.Linear(线性样式)、ProgressType.Ring(环形无刻度样式)、ProgressType.ScaleRing(环形有刻度样式)、ProgressType.Eclipse(圆形样式)和ProgressType.Capsule(胶囊样式)。
线性样式进度条(默认类型)
说明
从API version9开始,组件高度大于宽度的时候自适应垂直显示,相等时仍然保持水平显示。
Progress({ value: 20, total: 100, type: ProgressType.Linear }).width(200).height(50)
Progress({ value: 20, total: 100, type: ProgressType.Linear }).width(50).height(200)
环形无刻度样式进度条
// 从左往右,1号环形进度条,默认前景色为蓝色,默认strokeWidth进度条宽度为2.0vp
Progress({ value: 40, total: 150, type: ProgressType.Ring }).width(100).height(100)
// 从左往右,2号环形进度条
Progress({ value: 40, total: 150, type: ProgressType.Ring }).width(100).height(100)
.color(Color.Grey) // 进度条前景色为灰色
.style({ strokeWidth: 15}) // 设置strokeWidth进度条宽度为15.0vp
环形有刻度样式进度条
Progress({ value: 20, total: 150, type: ProgressType.ScaleRing }).width(100).height(100)
.backgroundColor(Color.Black)
.style({ scaleCount: 20, scaleWidth: 5 }) // 设置环形有刻度进度条总刻度数为20,刻度宽度为5vp
Progress({ value: 20, total: 150, type: ProgressType.ScaleRing }).width(100).height(100)
.backgroundColor(Color.Black)
.style({ strokeWidth: 15, scaleCount: 20, scaleWidth: 5 }) // 设置环形有刻度进度条宽度15,总刻度数为20,刻度宽度为5vp
Progress({ value: 20, total: 150, type: ProgressType.ScaleRing }).width(100).height(100)
.backgroundColor(Color.Black)
.style({ strokeWidth: 15, scaleCount: 20, scaleWidth: 3 }) // 设置环形有刻度进度条宽度15,总刻度数为20,刻度宽度为3vp
圆形样式进度条
// 从左往右,1号圆形进度条,默认前景色为蓝色
Progress({ value: 10, total: 150, type: ProgressType.Eclipse }).width(100).height(100)
// 从左往右,2号圆形进度条,指定前景色为灰色
Progress({ value: 20, total: 150, type: ProgressType.Eclipse }).color(Color.Grey).width(100).height(100)
胶囊样式进度条
说明
- 头尾两端圆弧处的进度展示效果与ProgressType.Eclipse样式相同;
- 中段处的进度展示效果为矩形状长条,与ProgressType.Linear线性样式相似;
- 组件高度大于宽度的时候自适应垂直显示。
Progress({ value: 10, total: 150, type: ProgressType.Capsule }).width(100).height(50)
Progress({ value: 20, total: 150, type: ProgressType.Capsule }).width(50).height(100).color(Color.Grey)
Progress({ value: 50, total: 150, type: ProgressType.Capsule }).width(50).height(100).backgroundColor(Color.Black)
4、场景示例
更新当前进度值,如应用安装进度条。可通过点击Button增加progressValue,.value()属性将progressValue设置给Progress组件,进度条组件即会触发刷新,
更新当前进度。
@Entry
@Component
struct ProgressCase1 {
@State progressValue: number = 0 // 设置进度条初始值为0
build() {
Column() {
Column() {
Progress({value:0, total:100, type:ProgressType.Capsule}).width(200).height(50)
.style({strokeWidth:50}).value(this.progressValue)
Row().width('100%').height(5)
Button("进度条+5")
.onClick(()=>{
this.progressValue += 5
if (this.progressValue > 100){
this.progressValue = 0
}
})
}
}.width('100%').height('100%')
}
}
更多关于HarmonyOS 鸿蒙Next ArkTS语言教程入门学习第81天,进度条(Progress)的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html
可以自定义样式成小圆点吗
更多关于HarmonyOS 鸿蒙Next ArkTS语言教程入门学习第81天,进度条(Progress)的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html
怎么实现逆时针的圆环progress?
在HarmonyOS中,进度条(Progress)组件用于显示任务的进度。ArkTS语言中,Progress组件可以通过Progress
类来创建和配置。以下是一个简单的Progress组件示例:
import { Progress } from '@ohos.arkui.progress';
@Entry
@Component
struct ProgressExample {
@State progressValue: number = 0.5;
build() {
Column() {
Progress({ value: this.progressValue, total: 1.0 })
.width('90%')
.height(10)
.backgroundColor('#e0e0e0')
.foregroundColor('#007aff')
}
.width('100%')
.height('100%')
.justifyContent(FlexAlign.Center)
.padding(20)
}
}
在这个示例中,Progress
组件的value
属性表示当前进度,total
属性表示总进度。backgroundColor
和foregroundColor
分别用于设置进度条的背景色和前景色。width
和height
用于设置进度条的尺寸。
Progress组件还支持其他属性,如min
和max
用于设置进度范围,style
用于自定义样式等。通过调整这些属性,可以实现不同风格的进度条。
在第81天的HarmonyOS鸿蒙Next ArkTS语言教程中,您将学习如何使用进度条(Progress)组件。进度条用于显示任务的完成进度,常见于文件下载、数据加载等场景。在ArkTS中,您可以通过Progress
组件轻松实现这一功能。基本属性包括value
(当前进度值)、max
(最大值)和min
(最小值)。您还可以自定义样式,如颜色、宽度等,以适应不同的UI需求。通过合理使用进度条,可以提升用户体验,使应用更加直观和友好。