# LongPressGesture
说明: 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
# 接口
LongPressGesture(value?: { fingers?: number, repeat?: boolean, duration?: number })
参数:
参数名称 | 参数类型 | 必填 | 参数描述 |
---|---|---|---|
fingers | number | 否 | 触发长按的最少手指数,最小取值为1指, 最大取值为10指。 默认值:1 |
repeat | boolean | 否 | 是否连续触发事件回调。 默认值:false |
duration | number | 否 | 触发长按的最小时间,单位为毫秒(ms)。 默认值:500 |
# 事件
名称 | 功能描述 |
---|---|
onAction(event: (event?: GestureEvent) => void) | LongPress手势识别成功回调。 |
onActionEnd(event: (event?: GestureEvent) => void) | LongPress手势识别成功,手指抬起后触发回调。 |
onActionCancel(event: () => void) | LongPress手势识别成功,接收到触摸取消事件触发回调。 |
# 示例
// xxx.ets
@Entry
@Component
struct LongPressGestureExample {
@State count: number = 0;
build() {
Column() {
Text('LongPress onAction:' + this.count).fontSize(28)
// 单指长按文本触发该手势事件
.gesture(
LongPressGesture({ repeat: true })
// 由于repeat设置为true,长按动作存在时会连续触发,触发间隔为duration(默认值500ms)
.onAction((event: GestureEvent) => {
if (event.repeat) {
this.count++;
}
})
// 长按动作一结束触发
.onActionEnd(() => {
this.count = 0;
})
)
}
.height(200)
.width(300)
.padding(20)
.border({ width: 3 })
.margin(30)
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31