js-apis-inputmonitor.md 6.4 KB
Newer Older
1
# @ohos.multimodalInput.inputMonitor (输入监听)
Z
zengyawen 已提交
2

M
mayunteng_1 已提交
3
输入监听模块,提供了监听输入设备事件(当前支持触摸屏和鼠标)的能力。
M
mayunteng_1 已提交
4

H
HelloCrease 已提交
5
>  **说明:**
H
HelloCrease 已提交
6
>
M
mayunteng_1 已提交
7 8 9
>  - 本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
>
>  - 本模块接口均为系统接口。
Z
zengyawen 已提交
10 11 12 13 14


## 导入模块


M
mayunteng_1 已提交
15
```js
Z
zengyawen 已提交
16 17 18 19 20 21 22 23
import inputMonitor from '@ohos.multimodalInput.inputMonitor';
```


## inputMonitor.on

on(type: "touch", receiver: TouchEventReceiver): void

M
mayunteng_1 已提交
24
开始监听全局触屏事件。
Z
zengyawen 已提交
25

M
mayunteng_1 已提交
26
**需要权限:** ohos.permission.INPUT_MONITORING
Z
zengyawen 已提交
27

M
mayunteng_1 已提交
28
**系统能力:** SystemCapability.MultimodalInput.Input.InputMonitor
Z
zengyawen 已提交
29

M
mayunteng_1 已提交
30 31 32
**参数:**

| 参数名       | 类型                                       | 必填   | 说明                  |
H
HelloCrease 已提交
33
| -------- | ---------------------------------------- | ---- | ------------------- |
M
mayunteng_1 已提交
34 35
| type     | string                                   | 是    | 输入设备事件类型,取值“touch”。 |
| receiver | [TouchEventReceiver](#toucheventreceiver) | 是    | 回调函数,异步上报触摸屏输入事件。 |
Z
zengyawen 已提交
36

M
mayunteng_1 已提交
37
**示例:**
Z
zengyawen 已提交
38

M
mayunteng_1 已提交
39
```js
M
mayunteng_1 已提交
40
try {
M
mayunteng_1 已提交
41 42 43 44
  inputMonitor.on("touch", (touchEvent) => {
    console.log(`Monitor on success ${JSON.stringify(touchEvent)}`);
    return false;
  });
M
mayunteng_1 已提交
45
} catch (error) {
M
mayunteng_1 已提交
46
  console.log(`Monitor on failed, error: ${JSON.stringify(error, [`code`, `message`])}`);
M
mayunteng_1 已提交
47
}
Z
zengyawen 已提交
48 49
```

M
mayunteng_1 已提交
50
## inputMonitor.on<sup>9+</sup>
M
mayunteng_1 已提交
51

H
hungry_feiwei 已提交
52 53 54 55 56 57 58 59
on(type: "mouse", receiver: Callback&lt;MouseEvent&gt;): void

开始监听全局鼠标事件。

**需要权限:** ohos.permission.INPUT_MONITORING

**系统能力:** SystemCapability.MultimodalInput.Input.InputMonitor

M
mayunteng_1 已提交
60
**参数:** 
H
hungry_feiwei 已提交
61

M
mayunteng_1 已提交
62
| 参数名       | 类型                         | 必填   | 说明                  |
H
HelloCrease 已提交
63
| -------- | -------------------------- | ---- | ------------------- |
M
mayunteng_1 已提交
64 65
| type     | string                     | 是    | 输入设备事件类型,取值“mouse”。 |
| receiver | Callback&lt;MouseEvent&gt; | 是    | 回调函数,异步上报鼠标输入事件。  |
H
hungry_feiwei 已提交
66 67 68 69

  **示例:**

```js
M
mayunteng_1 已提交
70
try {
M
mayunteng_1 已提交
71 72 73 74
  inputMonitor.on("mouse", (mouseEvent) => {
    console.log(`Monitor on success ${JSON.stringify(mouseEvent)}`);
    return false;
  });
M
mayunteng_1 已提交
75
} catch (error) {
M
mayunteng_1 已提交
76
  console.log(`Monitor on failed, error: ${JSON.stringify(error, [`code`, `message`])}`);
M
mayunteng_1 已提交
77
}
H
hungry_feiwei 已提交
78 79 80
```


Z
zengyawen 已提交
81 82 83

## inputMonitor.off

H
hungry_feiwei 已提交
84
off(type: "touch", receiver?: TouchEventReceiver): void
Z
zengyawen 已提交
85

86
停止监听全局触屏事件。
Z
zengyawen 已提交
87

M
mayunteng_1 已提交
88
**需要权限:** ohos.permission.INPUT_MONITORING
Z
zengyawen 已提交
89

M
mayunteng_1 已提交
90
**系统能力:** SystemCapability.MultimodalInput.Input.InputMonitor
Z
zengyawen 已提交
91

M
mayunteng_1 已提交
92 93 94
**参数:**

| 参数名       | 类型                                       | 必填   | 说明                  |
H
HelloCrease 已提交
95
| -------- | ---------------------------------------- | ---- | ------------------- |
M
mayunteng_1 已提交
96 97
| type     | string                                   | 是    | 输入设备事件类型,取值“touch”。 |
| receiver | [TouchEventReceiver](#toucheventreceiver) | 否    | 需要取消监听的回调函数,若无此参数,则取消当前应用监听的所有回调函数。  |
Z
zengyawen 已提交
98

M
mayunteng_1 已提交
99
**示例:**
Z
zengyawen 已提交
100

M
mayunteng_1 已提交
101
```js
M
mayunteng_1 已提交
102
// 取消监听单个回调函数
M
mayunteng_1 已提交
103
function callback(touchEvent) {
M
mayunteng_1 已提交
104 105
  console.log(`Monitor on success ${JSON.stringify(touchEvent)}`);
  return false;
M
mayunteng_1 已提交
106
};
M
mayunteng_1 已提交
107
try {
M
mayunteng_1 已提交
108 109 110
  inputMonitor.on("touch", callback);
  inputMonitor.off("touch", callback);
  console.log(`Monitor off success`);
M
mayunteng_1 已提交
111
} catch (error) {
M
mayunteng_1 已提交
112 113 114 115 116 117
  console.log(`Monitor execute failed, error: ${JSON.stringify(error, [`code`, `message`])}`);
}
```

```js
// 取消监听所有回调函数
M
mayunteng_1 已提交
118
function callback(touchEvent) {
M
mayunteng_1 已提交
119 120
  console.log(`Monitor on success ${JSON.stringify(touchEvent)}`);
  return false;
M
mayunteng_1 已提交
121
};
M
mayunteng_1 已提交
122
try {
M
mayunteng_1 已提交
123
  inputMonitor.on("touch", callback);
M
mayunteng_1 已提交
124
  inputMonitor.off("touch");
M
mayunteng_1 已提交
125
  console.log(`Monitor off success`);
M
mayunteng_1 已提交
126
} catch (error) {
M
mayunteng_1 已提交
127
  console.log(`Monitor execute failed, error: ${JSON.stringify(error, [`code`, `message`])}`);
M
mayunteng_1 已提交
128
}
Z
zengyawen 已提交
129 130
```

M
mayunteng_1 已提交
131 132
## inputMonitor.off<sup>9+</sup>

H
hungry_feiwei 已提交
133
off(type: "mouse", receiver?: Callback&lt;MouseEvent&gt;): void
M
mayunteng_1 已提交
134

H
hungry_feiwei 已提交
135
停止监听全局鼠标事件。
Z
zengyawen 已提交
136

M
mayunteng_1 已提交
137
**需要权限:** ohos.permission.INPUT_MONITORING
H
hungry_feiwei 已提交
138

M
mayunteng_1 已提交
139
**系统能力:** SystemCapability.MultimodalInput.Input.InputMonitor
H
hungry_feiwei 已提交
140

M
mayunteng_1 已提交
141
**参数:**
H
hungry_feiwei 已提交
142

M
mayunteng_1 已提交
143
| 参数名       | 类型                         | 必填   | 说明                  |
H
HelloCrease 已提交
144
| -------- | -------------------------- | ---- | ------------------- |
M
mayunteng_1 已提交
145 146
| type     | string                     | 是    | 输入设备事件类型,取值“mouse”。 |
| receiver | Callback&lt;MouseEvent&gt; | 否    | 需要取消监听的回调函数,若无此参数,则取消当前应用监听的所有回调函数。 |
H
hungry_feiwei 已提交
147 148 149 150

**示例:**

```js
M
mayunteng_1 已提交
151
// 取消监听单个回调函数
M
mayunteng_1 已提交
152
function callback(mouseEvent) {
M
mayunteng_1 已提交
153
  console.log(`Monitor on success ${JSON.stringify(mouseEvent)}`);
M
mayunteng_1 已提交
154 155
  return false;
};
M
mayunteng_1 已提交
156
try {
M
mayunteng_1 已提交
157 158 159
  inputMonitor.on("mouse", callback);
  inputMonitor.off("mouse", callback);
  console.log(`Monitor off success`);
M
mayunteng_1 已提交
160
} catch (error) {
M
mayunteng_1 已提交
161 162 163 164 165 166
  console.log(`Monitor execute failed, error: ${JSON.stringify(error, [`code`, `message`])}`);
}
```

```js
// 取消监听所有回调函数
M
mayunteng_1 已提交
167
function callback(mouseEvent) {
M
mayunteng_1 已提交
168
  console.log(`Monitor on success ${JSON.stringify(mouseEvent)}`);
M
mayunteng_1 已提交
169 170
  return false;
};
M
mayunteng_1 已提交
171
try {
M
mayunteng_1 已提交
172
  inputMonitor.on("mouse", callback);
M
mayunteng_1 已提交
173
  inputMonitor.off("mouse");
M
mayunteng_1 已提交
174
  console.log(`Monitor off success`);
M
mayunteng_1 已提交
175
} catch (error) {
M
mayunteng_1 已提交
176
  console.log(`Monitor execute failed, error: ${JSON.stringify(error, [`code`, `message`])}`);
M
mayunteng_1 已提交
177
}
H
hungry_feiwei 已提交
178 179 180 181
```

## TouchEventReceiver

M
mayunteng_1 已提交
182
触摸输入事件的回调函数。
Z
zengyawen 已提交
183

H
HelloCrease 已提交
184
**需要权限:** ohos.permission.INPUT_MONITORING
H
hungry_feiwei 已提交
185

M
mayunteng_1 已提交
186
**系统能力:** SystemCapability.MultimodalInput.Input.InputMonitor
Z
zengyawen 已提交
187

M
mayunteng_1 已提交
188 189
**参数:**

H
HelloCrease 已提交
190 191
| 参数         | 类型                                       | 必填   | 说明                                       |
| ---------- | ---------------------------------------- | ---- | ---------------------------------------- |
M
mayunteng_1 已提交
192
| touchEvent | [TouchEvent](../arkui-js/js-components-common-events.md) | 是    | 触摸输入事件。 |
Z
zengyawen 已提交
193

M
mayunteng_1 已提交
194 195
**返回值:**

H
HelloCrease 已提交
196 197
| 类型      | 说明                                       |
| ------- | ---------------------------------------- |
M
mayunteng_1 已提交
198
| Boolean | 若返回true,本次触摸后续产生的事件不再分发到窗口;若返回false,本次触摸后续产生的事件还会分发到窗口。 |
Z
zengyawen 已提交
199

M
mayunteng_1 已提交
200
**示例:**
Z
zengyawen 已提交
201

M
mayunteng_1 已提交
202
```js
M
mayunteng_1 已提交
203
try {
M
mayunteng_1 已提交
204
  inputMonitor.on("touch", touchEvent => {
M
mayunteng_1 已提交
205
    if (touchEvent.touches.length == 3) { // 当前有三个手指按下
M
mayunteng_1 已提交
206 207 208 209
      return true;
    } else {
      return false;
    }
M
mayunteng_1 已提交
210 211
  });
} catch (error) {
M
mayunteng_1 已提交
212
    console.log(`Monitor on failed, error: ${JSON.stringify(error, [`code`, `message`])}`);
M
mayunteng_1 已提交
213
}
Z
zengyawen 已提交
214
```