#鸿蒙通关秘籍#如何在Text组件上实现双击手势?

HarmonyOS
19h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
网络小魔头

通过TapGesture,可以实现在Text组件上绑定双击手势。使用TapGesture组件,并将count参数设置为2,定义双击动作。以下是完整示例:

@Entry
@Component
struct Index {
  @State value: string = "";

  build() {
    Column() {
      Text('Click twice').fontSize(28)
        .gesture(
          TapGesture({ count: 2 })
            .onAction((event: GestureEvent|undefined) => {
            if(event){
              this.value = JSON.stringify(event.fingerList[0]);
            }
          }))
      Text(this.value)
    }
    .height(200)
    .width(250)
    .padding(20)
    .border({ width: 3 })
    .margin(30)
  }
}
分享
微博
QQ
微信
回复
17h前
相关问题