HarmonyOS SegmentButton 点击事件回调是哪个? onclick无回调

用户点击切换SegmentButton 时,无回调, 回调需要获取到点击按钮的index

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

参考以下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%')
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS 事件
26浏览 • 1回复 待解决
HarmonyOS Scroll组件事件问题
188浏览 • 1回复 待解决
焦点事件onBlur/onFocus无法触发
2019浏览 • 1回复 待解决
HarmonyOS Web组件
212浏览 • 1回复 待解决
interface如何调用
933浏览 • 1回复 待解决
HarmonyOS 如何声明全局函数
341浏览 • 1回复 待解决
HarmonyOS 活体检测问题
217浏览 • 1回复 待解决
HarmonyOS killAllProcesses()无成功的
176浏览 • 1回复 待解决
Flutter - EventChannel问题
187浏览 • 1回复 待解决
HarmonyOS 自定义interface问题
180浏览 • 1回复 待解决
HarmonyOS ArkTS接口的案例问题
660浏览 • 1回复 待解决
HarmonyOS 组件是否有销毁方法
595浏览 • 1回复 待解决