HarmonyOS Gauge组件使用问题

Gauge如何实现手动滑动效果,动态更新Gauge的value值?

HarmonyOS
3天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang

Gauge目前不支持手动滑动相关,下面是结合按钮实现的动态更新Gauge的value值的demo:

//该示例实现了Gauge组件使用Builder定制内容区,使用了环形图表组件,按钮和文本框。点击增加按钮,环形图表指针位置会向右偏移,反之点减少按钮环形图表指针位置会向左偏移。
@Builder
function buildGauge(config: GaugeConfiguration) {
  Column({ space: 30 }) {
    Row() {
      Text('【ContentModifier】 value:' + JSON.stringify((config.contentModifier as MyGaugeStyle).value) +
        '  min:' + JSON.stringify((config.contentModifier as MyGaugeStyle).min) +
        '  max:' + JSON.stringify((config.contentModifier as MyGaugeStyle).max))
        .fontSize(12)
    }

    Text('【Config】value:' + config.value + '  min:' + config.min + '  max:' + config.max).fontSize(12)
    Gauge({
      value: config.value,
      min: config.min,
      max: config.max
    }).width("50%")
  }
  .width("100%")
  .padding(20)
  .margin({ top: 5 })
  .alignItems(HorizontalAlign.Center)
}

class MyGaugeStyle implements ContentModifier<GaugeConfiguration> {
  value: number = 0
  min: number = 0
  max: number = 0

  constructor(value: number, min: number, max: number) {
    this.value = value
    this.min = min
    this.max = max
  }

  applyContent(): WrappedBuilder<[GaugeConfiguration]> {
    return wrapBuilder(buildGauge)
  }
}

@Entry
@Component
struct refreshExample {
  @State gaugeValue: number = 10
  @State gaugeMin: number = 0
  @State gaugeMax: number = 100

  build() {
    Column({ space: 20 }) {
      Gauge({
        value: this.gaugeValue,
        min: this.gaugeMin,
        max: this.gaugeMax,
      })
        .contentModifier(new MyGaugeStyle(30, 10, 100))

      Column({ space: 20 }) {
        Row({ space: 20 }) {
          Button('增加').onClick(() => {
            if (this.gaugeValue < this.gaugeMax) {
              this.gaugeValue += 1
            }
          })
          Button('减少').onClick(() => {
            if (this.gaugeValue > this.gaugeMin) {
              this.gaugeValue -= 1
            }
          })
        }
      }.width('100%')
    }.width('100%').margin({ top: 5 })
  }
}
分享
微博
QQ
微信
回复
3天前
相关问题
Gauge组件问题,该如何解决?
312浏览 • 1回复 待解决
HarmonyOS Scroll组件使用问题
446浏览 • 1回复 待解决
HarmonyOS UI组件使用问题
33浏览 • 1回复 待解决
HarmonyOS 使用Video组件问题
28浏览 • 1回复 待解决
HarmonyOS Refresh组件使用问题
62浏览 • 1回复 待解决
HarmonyOS 组件.bindPopup属性使用问题
402浏览 • 1回复 待解决
HarmonyOS Navigation组件使用问题
25浏览 • 1回复 待解决
HarmonyOS swiper组件使用问题
325浏览 • 1回复 待解决
Marquee组件使用问题有哪些?
393浏览 • 0回复 待解决
OpenHarmony 使用WEB组件传值问题
3538浏览 • 1回复 待解决
HarmonyOS Web组件和List的嵌套使用问题
288浏览 • 1回复 待解决
HarmonyOS Tabs组件组件问题
471浏览 • 1回复 待解决
HarmonyOS Slide使用问题
334浏览 • 1回复 待解决
HarmonyOS ProtoBuffer使用问题
512浏览 • 1回复 待解决
HarmonyOS filePreview使用问题
378浏览 • 1回复 待解决
HarmonyOS textpicker使用问题
309浏览 • 1回复 待解决
HarmonyOS customdialog使用问题
694浏览 • 1回复 待解决