选择评分的组件

2024-01-22 17:24 更新

提供在给定范围内选择评分的组件。

说明

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

子组件

接口

Rating(options?: { rating: number, indicator?: boolean })

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

参数:

参数名

参数类型

必填

参数描述

rating

number

设置并接收评分值。

默认值:0

取值范围: [0, stars]

小于0取0,大于stars取最大值stars。

indicator

boolean

设置评分组件作为指示器使用,不可改变评分。

默认值:false, 可进行评分

说明:

indicator=true时,默认组件高度height=12.0vp,组件width=height * stars。

indicator=false时,默认组件高度height=28.0vp,组件width=height * stars。

属性

名称

参数类型

描述

stars

number

设置评分总数。

默认值:5

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

说明:

设置为小于0的值时,按默认值显示。

stepSize

number

操作评级的步长。

默认值:0.5

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

说明:

设置为小于0.1的值时,按默认值显示。

取值范围为[0.1, stars]。

starStyle

{

backgroundUri: string,

foregroundUri: string,

secondaryUri?: string

}

backgroundUri:未选中的星级的图片链接,可由用户自定义或使用系统默认图片。

foregroundUri:选中的星级的图片路径,可由用户自定义或使用系统默认图片。

secondaryUri:部分选中的星级的图片路径,可由用户自定义或使用系统默认图片。

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

说明:

startStyle属性所支持的图片类型能力参考Image组件。

支持加载本地图片和网络图片,暂不支持PixelMap类型和Resource资源。

默认图片加载方式为异步,暂不支持同步加载。

设置值为undefined或者空字符串时,rating会选择加载系统默认星型图源。

说明

rating宽高为[width, height]时,单个图片的绘制区域为[width / stars, height]。

为了指定绘制区域为方形,建议自定义宽高时采取[height * stars, height], width = height * stars的方式。

事件

名称

功能描述

onChange(callback:(value: number) => void)

操作评分条的评星发生改变时触发该回调。

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

示例

示例1

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct RatingExample {
  5. @State rating: number = 3.5
  6. build() {
  7. Column() {
  8. Column() {
  9. Rating({ rating: this.rating, indicator: false })
  10. .stars(5)
  11. .stepSize(0.5)
  12. .margin({ top: 24 })
  13. .onChange((value: number) => {
  14. this.rating = value
  15. })
  16. Text('current score is ' + this.rating)
  17. .fontSize(16)
  18. .fontColor('rgba(24,36,49,0.60)')
  19. .margin({ top: 16 })
  20. }.width(360).height(113).backgroundColor('#FFFFFF').margin({ top: 68 })
  21. Row() {
  22. Image('common/testImage.jpg')
  23. .width(40)
  24. .height(40)
  25. .borderRadius(20)
  26. .margin({ left: 24 })
  27. Column() {
  28. Text('Yue')
  29. .fontSize(16)
  30. .fontColor('#182431')
  31. .fontWeight(500)
  32. Row() {
  33. Rating({ rating: 3.5, indicator: false }).margin({ top: 1, right: 8 })
  34. Text('2021/06/02')
  35. .fontSize(10)
  36. .fontColor('#182431')
  37. }
  38. }.margin({ left: 12 }).alignItems(HorizontalAlign.Start)
  39. Text('1st Floor')
  40. .fontSize(10)
  41. .fontColor('#182431')
  42. .position({ x: 295, y: 8 })
  43. }.width(360).height(56).backgroundColor('#FFFFFF').margin({ top: 64 })
  44. }.width('100%').height('100%').backgroundColor('#F1F3F5')
  45. }
  46. }

示例2

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct RatingExample {
  5. @State rating: number = 3.5
  6. build() {
  7. Column() {
  8. Rating({ rating: this.rating, indicator: false })
  9. .stars(5)
  10. .stepSize(0.5)
  11. .starStyle({
  12. backgroundUri: '/common/imag1.png', // common目录与pages同级
  13. foregroundUri: '/common/imag2.png',
  14. secondaryUri: '/common/imag3.png'
  15. })
  16. .margin({ top: 24 })
  17. .onChange((value: number) => {
  18. this.rating = value
  19. })
  20. Text('current score is ' + this.rating)
  21. .fontSize(16)
  22. .fontColor('rgba(24,36,49,0.60)')
  23. .margin({ top: 16 })
  24. }.width('100%').height('100%').backgroundColor('#F1F3F5')
  25. }
  26. }

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号