HarmonyOS 鸿蒙Next中SegmentButton点击事件回调是哪个? onclick无回调

发布于 1周前 作者 phonegap100 来自 鸿蒙OS

HarmonyOS 鸿蒙Next中SegmentButton点击事件回调是哪个? onclick无回调 用户点击切换SegmentButton 时,无回调, 回调需要获取到点击按钮的index

3 回复

请参考以下demo:

import {
  ItemRestriction,
  SegmentButton,
  SegmentButtonItemTuple,
  SegmentButtonOptions,
  SegmentButtonTextItem
} from '@ohos.arkui.advanced.SegmentButton'

@Entry
@Component
struct Index {
  @State tabOptions: SegmentButtonOptions = SegmentButtonOptions.tab({
    buttons: [{ text: '页签按钮1' }, { text: '页签按钮2' }, {
      text: '页签按钮3'
    }] as ItemRestriction<SegmentButtonTextItem>,
    backgroundBlurStyle: BlurStyle.BACKGROUND_THICK
  })
  @State tf:boolean=true
  @State @Watch('onSegmentButtonChange') tabSelectedIndexes: number[] = [0]

  onSegmentButtonChange() {
    this.tf=!this.tf
    console.log(`选中按钮索引 -- ${this.tabSelectedIndexes}`);
  }

  aboutToAppear(): void {
    console.log("122233")
  }

  build() {
    Row() {
      Column() {
        Column({ space: 25 }) {
          SegmentButton({ options: this.tabOptions,
            selectedIndexes: $tabSelectedIndexes })
          TextInput({text:`${this.tabSelectedIndexes}`}).enabled(this.tf)
        }.width('90%')
      }.width('100%')
    }.height('100%')
  }
}

更多关于HarmonyOS 鸿蒙Next中SegmentButton点击事件回调是哪个? onclick无回调的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html


在HarmonyOS(鸿蒙Next)中,SegmentButton的点击事件回调是通过onClick事件实现的。如果onClick无回调,可能是因为事件监听器未正确绑定或组件配置有误。确保在SegmentButton中正确设置了onClick事件监听器,并且组件的enabled属性为true。检查代码中是否遗漏了事件绑定或存在逻辑错误。

在HarmonyOS的鸿蒙Next中,SegmentButton的点击事件回调是通过onClick方法实现的。如果发现onClick无回调,可能是以下原因:

  1. 未正确设置监听器:确保为SegmentButton设置了onClick监听器。
  2. 事件未触发:检查SegmentButtonenabled属性是否为true,确保按钮可以接收点击事件。
  3. UI线程阻塞:确保主线程未被阻塞,否则事件可能无法及时触发。

正确示例:

segmentButton.setOnClickListener(component -> {
    // 处理点击事件
});
回到顶部
AI 助手
你好,我是IT营的 AI 助手
您可以尝试点击下方的快捷入口开启体验!