ts-basic-gestures-longpressgesture.md 2.1 KB
Newer Older
Z
zengyawen 已提交
1
# LongPressGesture
Z
zengyawen 已提交
2

T
explain  
tianyu 已提交
3 4
用于触发长按手势事件,触发长按手势的最少手指数为1,最短时间为500毫秒。

H
geshi  
HelloCrease 已提交
5
>  **说明:**
G
gmy 已提交
6 7
>
>  从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
Z
zengyawen 已提交
8

Z
zengyawen 已提交
9 10 11

## 接口

G
gmy 已提交
12
LongPressGesture(value?: { fingers?: number, repeat?: boolean, duration?: number })
Z
zengyawen 已提交
13

G
gmy 已提交
14 15 16 17 18 19 20
**参数:**

| 参数名称 | 参数类型 | 必填 | 参数描述 |
| -------- | -------- | -------- | -------- |
| fingers | number | 否 | 触发长按的最少手指数,最小为1指,&nbsp;最大取值为10指。<br/>默认值:1 |
| repeat | boolean | 否 | 是否连续触发事件回调。<br/>默认值:false |
| duration | number | 否 | 触发长按的最短时间,单位为毫秒(ms)。<br/>默认值:500 |
Z
zengyawen 已提交
21 22 23 24


## 事件

T
explain  
tianyu 已提交
25 26
| 名称 | 功能描述 |
| -------- | -------- |
S
sienna1128 已提交
27 28
| onAction(event:(event?:&nbsp;[GestureEvent](ts-gesture-settings.md#gestureevent对象说明))&nbsp;=&gt;&nbsp;void) | LongPress手势识别成功回调。 |
| onActionEnd(event:(event?:&nbsp;[GestureEvent](ts-gesture-settings.md#gestureevent对象说明))&nbsp;=&gt;&nbsp;void) | LongPress手势识别成功,手指抬起后触发回调。 |
T
explain  
tianyu 已提交
29
| onActionCancel(event:&nbsp;()&nbsp;=&gt;&nbsp;void) | LongPress手势识别成功,接收到触摸取消事件触发回调。 |
Z
zengyawen 已提交
30 31 32


## 示例
Z
zengyawen 已提交
33

H
geshi  
HelloCrease 已提交
34 35
```ts
// xxx.ets
Z
zengyawen 已提交
36 37 38 39 40 41 42 43 44 45 46 47
@Entry
@Component
struct LongPressGestureExample {
  @State count: number = 0

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.SpaceBetween }) {
      Text('LongPress onAction:' + this.count)
    }
    .height(200).width(300).padding(60).border({ width:1 }).margin(30)
    .gesture(
      LongPressGesture({ repeat: true })
48
        // 长按动作存在会连续触发
K
kukixi 已提交
49
        .onAction((event: GestureEvent) => {
Z
zengyawen 已提交
50 51
          if (event.repeat) { this.count++ }
        })
52
        // 长按动作一结束触发
Z
zengyawen 已提交
53 54 55 56 57 58 59 60
        .onActionEnd(() => {
          this.count = 0
        })
    )
  }
}
```

Z
zengyawen 已提交
61
![zh-cn_image_0000001174264380](figures/zh-cn_image_0000001174264380.gif)