ts-universal-events-touch.md 3.5 KB
Newer Older
Z
zengyawen 已提交
1
# 触摸事件
Z
zengyawen 已提交
2

T
explain  
tianyu 已提交
3 4
当手指放在组件上、滑动或从组件上移开时触发。

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

Z
zengyawen 已提交
8 9

## 权限列表
Z
zengyawen 已提交
10 11 12



Z
zengyawen 已提交
13 14 15

## 事件

H
geshi  
HelloCrease 已提交
16 17 18
| 名称                                       | 是否冒泡 | 功能描述                                     |
| ---------------------------------------- | ---- | ---------------------------------------- |
| onTouch(callback: (event?: TouchEvent) => void) | 是    | 触摸动作触发该方法调用,event参数见[TouchEvent](#touchevent对象说明)介绍。 |
Z
zengyawen 已提交
19 20


H
HelloCrease 已提交
21
## TouchEvent对象说明
Z
zengyawen 已提交
22 23

- 属性
K
kangchongtao 已提交
24 25 26 27 28 29 30
  | 属性名称                | 类型                                       | 描述           |
  | ------------------- | ---------------------------------------- | ------------ |
  | type                | [TouchType](ts-appendix-enums.md#touchtype)      | 触摸事件的类型。     |
  | touches             | Array<[TouchObject](#touchobject对象说明)> | 全部手指信息。      |
  | changedTouches      | Array<[TouchObject](#touchobject对象说明)> | 当前发生变化的手指信息。 |
  | timestamp           | number                                   | 距离开机时间的时间戳,单位为毫秒。      |
  | target<sup>8+</sup> | [EventTarget](ts-universal-events-click.md#eventtarget8对象说明) | 被触摸元素对象。     |
Z
zengyawen 已提交
31 32 33


- 接口
H
geshi  
HelloCrease 已提交
34 35 36
  | 接口名称                   | 功能描述    |
  | ---------------------- | ------- |
  | stopPropagation():void | 阻塞事件冒泡。 |
Z
zengyawen 已提交
37 38


H
HelloCrease 已提交
39 40 41
## TouchObject对象说明
| 属性名称    | 类型                          | 描述                  |
| ------- | --------------------------- | ------------------- |
K
kangchongtao 已提交
42
| type    | [TouchType](ts-appendix-enums.md#touchtype) | 触摸事件的类型。            |
H
HelloCrease 已提交
43 44 45 46 47 48
| id      | number                      | 手指唯一标识符。            |
| screenX | number                      | 触摸点相对于设备屏幕左边沿的X坐标。  |
| screenY | number                      | 触摸点相对于设备屏幕上边沿的Y坐标。  |
| x       | number                      | 触摸点相对于被触摸元素左边沿的X坐标。 |
| y       | number                      | 触摸点相对于被触摸元素上边沿的Y坐标。 |

Z
zengyawen 已提交
49
## 示例
Z
zengyawen 已提交
50

H
geshi  
HelloCrease 已提交
51 52
```ts
// xxx.ets
Z
zengyawen 已提交
53 54 55 56 57 58 59 60
@Entry
@Component
struct TouchExample {
  @State text: string = ''
  @State eventType: string = ''

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.SpaceBetween }) {
Z
zengyawen 已提交
61
      Button('Touch').backgroundColor(0x2788D9).height(40).width(80)
Z
zengyawen 已提交
62 63 64 65 66 67 68 69 70 71
        .onTouch((event: TouchEvent) => {
          if (event.type === TouchType.Down) {
            this.eventType = 'Down'
          }
          if (event.type === TouchType.Up) {
            this.eventType = 'Up'
          }
          if (event.type === TouchType.Move) {
            this.eventType = 'Move'
          }
Z
zengyawen 已提交
72
          console.info(this.text = 'TouchType:' + this.eventType + '\nDistance between touch point and touch element:\nx: '
Z
zengyawen 已提交
73
          + event.touches[0].x + '\n' + 'y: ' + event.touches[0].y + '\ncomponent globalPos:('
74
          + event.target.area.globalPosition.x + ',' + event.target.area.globalPosition.y + ')\nwidth:'
Z
zengyawen 已提交
75
          + event.target.area.width + '\nheight:' + event.target.area.height)
Z
zengyawen 已提交
76 77 78 79 80 81 82
        })
      Text(this.text)
    }.height(200).width(350).padding({ left: 35, right: 35, top: 35 })
  }
}
```

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