HarmonyOS Toggle如何禁用自身的点击切换事件 --胡宏松

使用Toggle控件时,我不需要它响应点击事件,开或关由另一个控件控制的

HarmonyOS
11h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
put_get

参考代码:

@Entry
@Component
struct Page240522215803016 {
  @State message: string = 'Hello World';
  @State isToggleOn: boolean = false
  dialogController: CustomDialogController = new CustomDialogController({
    builder: CustomDialogExample({
      confirm: () => {
        this.onAccept()
      },
    }),
  })

  onAccept() {
    if (this.isToggleOn) {
      this.isToggleOn = false
    } else {
      this.isToggleOn = true
    }
  }

  build() {
    RelativeContainer() {
      Toggle({
        type: ToggleType.Switch,
        isOn: this.isToggleOn
      })// 调用onTouchIntercept修改该组件的HitTestMode属性
        .onTouchIntercept((event: TouchEvent) => {
          console.log("OnTouchIntercept + " + JSON.stringify(event));
          this.dialogController.open()
          return HitTestMode.None
        }).onChange((isOn: boolean) => {
        console.info("isOn:" + isOn)
        if (isOn) {
          // 需要执行的操作
        }
      })
    }.height('100%').width('100%')
  }
}

@CustomDialog
export struct CustomDialogExample {
  controller: CustomDialogController = new CustomDialogController({ builder: CustomDialogExample({}), })
  confirm?: () => void

  build() {
    Column() {
      Text('点击确认').fontSize(20).margin({ top: 10, bottom: 10 }).onClick(() => {
        this.controller.close()
        if (this.confirm) {
          this.confirm()
        }
      })
    }
  }
}
分享
微博
QQ
微信
回复
8h前
相关问题
HarmonyOS 关于ui布局问题 --
1浏览 • 0回复 待解决
如何去掉Toggle一类控件点击效果
419浏览 • 1回复 待解决
如何禁止Button点击事件
587浏览 • 1回复 待解决
HarmonyOS 富文本点击事件
441浏览 • 1回复 待解决
如何获取应用自身bundleName
2507浏览 • 1回复 待解决
如何停止UIAbility自身
2012浏览 • 1回复 待解决