js-apis-inputdevice.md 19.6 KB
Newer Older
Z
zengyawen 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
# 输入设备


输入设备管理模块,用于监听输入设备连接、断开和变化,并查看输入设备相关信息。比如监听鼠标插拔,并获取鼠标的id、name和指针移动速度等信息。


> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。


## 导入模块


14
```js
Z
zengyawen 已提交
15 16 17
import inputDevice from '@ohos.multimodalInput.inputDevice';
```

H
hungry_feiwei 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
## inputDevice.on

on(type: “change”, listener: Callback<DeviceListener>): void

监听设备的热插拔事件。

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

**参数:**

| 参数     | 类型                                              | 必填 | 说明                 |
| -------- | ------------------------------------------------- | ---- | -------------------- |
| type     | string                                            | 是   | 输入设备的事件类型   |
| listener | Callback<[DeviceListener](#devicelistener)> | 是   | 可上报的输入设备事件 |

**示例:** 

```js
export default {
    callback: function(type, deviceId) {
        console.log("type: " + type + ", deviceId: " + deviceId)
    }
    testOn: function() {
        inputDevice.on("change", this.callback)
    }
}
```

## inputDevice.off

on(type: “change”, listener?: Callback<DeviceListener>): void

取消监听设备的热插拔事件。

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

**参数:**

| 参数     | 类型                                              | 必填 | 说明                 |
| -------- | ------------------------------------------------- | ---- | -------------------- |
| type     | string                                            | 是   | 输入设备的事件类型   |
| listener | Callback<[DeviceListener](#devicelistener)> | 否   | 可上报的输入设备事件 |

**示例:** 

```js
export default {
    callback: function(type, deviceId) {
        console.log("type: " + type + ", deviceId: " + deviceId)
    }
    testOff: function() {
        // 取消特定监听
        inputDevice.off("change", this.callback)
        
        // 取消所有监听
        inputDevice.off("change")
    }
}
```
Z
zengyawen 已提交
77 78 79 80 81 82 83 84 85

## inputDevice.getDeviceIds

getDeviceIds(callback: AsyncCallback<Array<number>>): void

获取所有输入设备的id列表,使用callback方式作为异步方法。

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

M
mayunteng_1 已提交
86
**参数:**
Z
zengyawen 已提交
87

H
HelloCrease 已提交
88 89 90
| 参数       | 类型                                       | 必填   | 说明    |
| -------- | ---------------------------------------- | ---- | ----- |
| callback | AsyncCallback<Array<number>> | 是    | 回调函数。 |
M
mayunteng_1 已提交
91

Z
zengyawen 已提交
92 93
**示例:** 

94
```js
H
hungry_feiwei 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107
export default {
    data: {
        deviceIds: Array,
    },
    callback: function(ids) {
        this.deviceIds = ids;
    },
    testGetDeviceIds: function () {
        console.info("InputDeviceJsTest---start---testGetDeviceIds");
        inputDevice.getDeviceIds(this.callback);
        console.info("InputDeviceJsTest---end---testGetDeviceIds");
    }
}
Z
zengyawen 已提交
108 109
```

M
mayunteng_1 已提交
110 111
## inputDevice.getDeviceIds

H
hungry_feiwei 已提交
112
function getDeviceIds(): Promise<<Array<number>>
M
mayunteng_1 已提交
113 114 115 116 117 118 119

获取所有输入设备的id列表,使用Promise方式作为异步方法。

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

**返回值:**

H
hungry_feiwei 已提交
120 121
| 参数                      | 说明                          |
| ------------------------- | ----------------------------- |
H
hungry_feiwei 已提交
122
| Promise<Array<number>> | Promise实例,用于异步获取结果 |
M
mayunteng_1 已提交
123 124 125

**示例:**

126
```js
H
hungry_feiwei 已提交
127 128 129 130 131 132 133 134 135 136 137
export default {
    testGetDeviceIds: function () {
        console.info("InputDeviceJsTest---start---testGetDeviceIds");
        let promise = inputDevice.getDeviceIds();
        promise.then((data)=> {
            console.info('GetDeviceIds successed, Data: ' + JSON.stringify(data))
        }).catch((err)=>{
            console.error('Failed GetDeviceIds. Cause: ' + JSON.stringify(err));
        });
    }
}
M
mayunteng_1 已提交
138 139
```

Z
zengyawen 已提交
140 141 142 143 144 145 146 147 148 149
## inputDevice.getDevice

getDevice(deviceId: number, callback: AsyncCallback<InputDeviceData>): void

获取输入设备的描述信息,使用callback方式作为异步方法。

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

**参数:** 

H
HelloCrease 已提交
150 151 152 153
| 参数       | 类型                                       | 必填   | 说明                          |
| -------- | ---------------------------------------- | ---- | --------------------------- |
| deviceId | number                                   | 是    | 需要获取信息的设备id。                |
| callback | AsyncCallback<[InputDeviceData](#inputdevicedata)> | 是    | 回调函数,异步返回InputDeviceData对象。 |
Z
zengyawen 已提交
154 155 156

**示例:** 

157
```js
H
hungry_feiwei 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
export default {
    InputDeviceData: {
        deviceId : 0,
        name : "NA",
        sources : Array,
        axisRanges : Array,
    },
    callback: function(deviceData) {
        this.InputDeviceData = deviceData;
    },
    testGetDevice: function () {
        // 示例获取设备id为1的设备信息。
        console.info("InputDeviceJsTest---start---testGetDevice");
        inputDevice.getDevice(1, this.callback);
        console.info("InputDeviceJsTest---end---testGetDevice");
    }
}
Z
zengyawen 已提交
175 176
```

M
mayunteng_1 已提交
177 178
## inputDevice.getDevice

H
hungry_feiwei 已提交
179
function getDevice(deviceId: number): Promise<InputDeviceData>
M
mayunteng_1 已提交
180 181 182 183 184

获取输入设备的描述信息,使用Promise方式作为异步方法。

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

H
hungry_feiwei 已提交
185 186 187 188 189 190
**参数:** 

| 参数     | 类型   | 必填 | 说明                   |
| -------- | ------ | ---- | ---------------------- |
| deviceId | number | 是   | 需要获取信息的设备id。 |

M
mayunteng_1 已提交
191 192
**返回值:**

H
hungry_feiwei 已提交
193 194 195
| 参数                                               | 说明                          |
| -------------------------------------------------- | ----------------------------- |
| Promise<[InputDeviceData](#inputdevicedata)> | Promise实例,用于异步获取结果 |
M
mayunteng_1 已提交
196 197 198

**示例:**

199
```js
H
hungry_feiwei 已提交
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
export default {
    InputDeviceData: {
        deviceId : 0,
        name : "NA",
        sources : Array,
        axisRanges : Array,
    },
    testGetDevice: function () {
        // 示例获取设备id为1的设备信息。
        console.info("InputDeviceJsTest---start---testGetDevice");
        let promise = inputDevice.getDevice(1);
        promise.then((data)=> {
            console.info('GetDeviceId successed, Data: ' + JSON.stringify(data))
        }).catch((err)=>{
            console.error('Failed GetDeviceId. Cause: ' + JSON.stringify(err));
        });
    }
}
M
mayunteng_1 已提交
218 219
```

H
hungry_feiwei 已提交
220
## inputDevice.supportKeys
M
mayunteng_1 已提交
221

H
hungry_feiwei 已提交
222
supportKeys(deviceId: number, keys: Array<KeyCode>, callback: Callback<Array<boolean>>): void;
Z
zengyawen 已提交
223

H
hungry_feiwei 已提交
224
获取输入设备的描述信息,使用callback方式作为异步方法。
M
mayunteng_1 已提交
225

H
hungry_feiwei 已提交
226
**系统能力:** SystemCapability.MultimodalInput.Input.InputDevice
M
mayunteng_1 已提交
227

H
hungry_feiwei 已提交
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
**参数:** 

| 参数     | 类型                                 | 必填 | 说明                                                         |
| -------- | ------------------------------------ | ---- | ------------------------------------------------------------ |
| deviceId | number                               | 是   | 输入设备的唯一标识,同一个物理设备反复插拔,其设备id会发生变化。 |
| keys     | Array<KeyCode>                 | 是   | 需要查询的键码值,最多支持5个按键查询。                      |
| callback | Callback<Array<boolean>> | 是   | 回调函数,异步返回查询结果。                                 |

**示例:** 

```js
export default {
    callback: function(ret) {
        console.log("The query result is as follows: " + ret);
    },
    testSupportKeys: function() {
        // 示例查询id为1的设备对于17、22和2055按键的支持情况。
        inputDevice.supportKeys(1, [17, 22, 2055], this.callback);
    }
}
```

## inputDevice.supportKeys

supportKeys(deviceId: number, keys: Array<KeyCode>): Promise<Array<boolean>>

获取输入设备的描述信息,使用Promise方式作为异步方法。
M
mayunteng_1 已提交
255 256 257

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

H
hungry_feiwei 已提交
258 259 260 261 262 263 264
**参数:** 

| 参数     | 类型                 | 必填 | 说明                                                         |
| -------- | -------------------- | ---- | ------------------------------------------------------------ |
| deviceId | number               | 是   | 输入设备的唯一标识,同一个物理设备反复插拔,其设备id会发生变化。 |
| keys     | Array<KeyCode> | 是   | 需要查询的键码值,最多支持5个按键查询。                      |

M
mayunteng_1 已提交
265 266
**返回值:**

H
hungry_feiwei 已提交
267 268 269
| 参数                                | 说明                          |
| ----------------------------------- | ----------------------------- |
| Promise<Array<boolean>> | Promise实例,用于异步获取结果 |
M
mayunteng_1 已提交
270

H
hungry_feiwei 已提交
271
**示例:** 
M
mayunteng_1 已提交
272 273

```js
H
hungry_feiwei 已提交
274 275 276 277 278 279 280 281
export default {
    testSupportKeys: function() {
        // 示例查询id为1的设备对于17、22和2055按键的支持情况。
        inputDevice.supportKeys(1, [17, 22, 2055]).then((ret)=>{
            console.log("The query result is as follows: " + ret);
        })
    }
}
M
mayunteng_1 已提交
282 283
```

H
hungry_feiwei 已提交
284
## inputDevice.setPointerSpeed
M
mayunteng_1 已提交
285

H
hungry_feiwei 已提交
286
setPointerSpeed(speed: number, callback: AsyncCallback<void>): void;
M
mayunteng_1 已提交
287

H
hungry_feiwei 已提交
288
设置光标移动的速度,使用callback方式作为异步方法。
M
mayunteng_1 已提交
289 290 291

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

H
hungry_feiwei 已提交
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
**参数:** 

| 参数     | 类型                                   | 必填 | 说明             |
| -------- | -------------------------------------- | ---- | ---------------- |
| speed    | number                                 | 是   | 光标移动的速度。 |
| callback | AsyncCallback<Array<void>> | 是   | 回调函数。       |

**示例:** 

```js
export default {
    callback: function() {
        console.log("The callback function is called.");
    },
    testSetPointerSpeed: function() {
        inputDevice.setPointerSpeed(100, this.callback);
    }
}
```

## inputDevice.setPointerSpeed

setPointerSpeed(speed: number): Promise<void>

设置光标移动的速度,使用Promise方式作为异步方法。

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

**参数:** 

| 参数  | 类型   | 必填 | 说明             |
| ----- | ------ | ---- | ---------------- |
| speed | number | 是   | 光标移动的速度。 |

M
mayunteng_1 已提交
326 327
**返回值:**

H
hungry_feiwei 已提交
328 329 330
| 参数                | 说明                          |
| ------------------- | ----------------------------- |
| Promise<void> | Promise实例,用于异步获取结果 |
M
mayunteng_1 已提交
331

H
hungry_feiwei 已提交
332
**示例:** 
M
mayunteng_1 已提交
333 334

```js
H
hungry_feiwei 已提交
335 336 337 338 339 340 341
export default {
    testSetPointerSpeed: function() {
        inputDevice.setPointerSpeed(100).then(()=>{
            console.log("The callback function is called.");
        })
    }
}
M
mayunteng_1 已提交
342 343
```

H
hungry_feiwei 已提交
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
## inputDevice.getPointerSpeed

getPointerSpeed(callback: AsyncCallback<number>): void;

获取光标移动的速度,使用callback方式作为异步方法。

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

**参数:** 

| 参数     | 类型                        | 必填 | 说明                         |
| -------- | --------------------------- | ---- | ---------------------------- |
| callback | AsyncCallback<number> | 是   | 回调函数,异步返回查询结果。 |

**示例:** 

```js
export default {
    callback: function(ret) {
        console.log("The cursor movement speed is: " + ret);
    },
    testGetPointerSpeed: function() {
        inputDevice.getPointerSpeed(this.callback);
    }
}
```

## inputDevice.getPointerSpeed

getPointerSpeed(): Promise<number>

获取光标移动的速度,使用Promise方式作为异步方法。

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

**返回值:**

| 参数                  | 说明                          |
| --------------------- | ----------------------------- |
| Promise<number> | Promise实例,用于异步获取结果 |

**示例:** 

```js
export default {
    testGetPointerSpeed: function() {
        inputDevice.getPointerSpeed().then((ret)=>{
            console.log("The cursor movement speed is: " + ret);
        })
    }
}
```

## inputDevice.getKeyboardType

getKeyboardType(deviceId: number, callback: AsyncCallback<KeyboardType>): void;

查询输入设备的键盘类型,使用callback方式作为异步方法。

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

**参数:** 

| 参数     | 类型                                               | 必填 | 说明                                                         |
| -------- | -------------------------------------------------- | ---- | ------------------------------------------------------------ |
| deviceId | number                                             | 是   | 输入设备的唯一标识,同一个物理设备反复插拔,其设备id会发生变化。 |
| callback | AsyncCallback<[KeyboardType](#keyboardtype)> | 是   | 回调函数,异步返回查询结果。                                 |

**示例:** 

```js
export default {
    callback: function(ret) {
        console.log("The keyboard type of the device is: " + ret);
    },
    testGetKeyboardType: function() {
        // 示例查询设备id为1的设备键盘类型。
        inputDevice.getKeyboardType(1, this.callback);
    }
}
```

## inputDevice.getKeyboardType

getKeyboardType(deviceId: number,): Promise<KeyboardType>

查询输入设备的键盘类型,使用Promise方式作为异步方法。

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

**返回值:**

| 参数                                         | 说明                          |
| -------------------------------------------- | ----------------------------- |
| Promise<[KeyboardType](#keyboardtype)> | Promise实例,用于异步获取结果 |

**示例:** 

```js
export default {
    testGetKeyboardType: function() {
        inputDevice.getKeyboardType().then((ret)=>{
            console.log("The keyboard type of the device is: " + ret);
        })
    }
}
```

## DeviceListener

输入设备的描述信息。

**系统能力:**  以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.InputDevice

| 名称     | 参数类型                    | 说明                                                         |
| -------- | --------------------------- | ------------------------------------------------------------ |
| type     | [ChangedType](#changedtype) | 表示输入设备插入或者移除。                                   |
| deviceId | number                      | 输入设备的唯一标识,同一个物理设备反复插拔,其设备id会发生变化。 |

Z
zengyawen 已提交
463 464 465 466
## InputDeviceData

输入设备的描述信息。

M
mayunteng_1 已提交
467
**系统能力:**  以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.InputDevice
Z
zengyawen 已提交
468

H
hungry_feiwei 已提交
469 470 471 472 473 474 475 476 477 478 479 480
| 名称       | 参数类型                               | 说明                                                         |
| ---------- | -------------------------------------- | ------------------------------------------------------------ |
| id         | number                                 | 输入设备的唯一标识,同一个物理设备反复插拔,其设备id会发生变化。 |
| name       | string                                 | 输入设备的名字。                                             |
| sources    | Array<[SourceType](#sourcetype)> | 输入设备支持的源类型。比如有的键盘上附带触摸板,则此设备有keyboard和touchpad两种输入源。 |
| axisRanges | Array<[axisRanges](#axisrange)>  | 输入设备的轴信息。                                           |
| bus        | number                                 | 输入设备的总线类型。                                         |
| product    | number                                 | 输入设备的产品信息。                                         |
| vendor     | number                                 | 输入设备的厂商信息。                                         |
| version    | number                                 | 输入设备的版本信息。                                         |
| phys       | string                                 | 输入设备的物理地址。                                         |
| uniq       | string                                 | 输入设备的唯一标识。                                         |
Z
zengyawen 已提交
481

M
mayunteng_1 已提交
482 483
## AxisType

H
hungry_feiwei 已提交
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
输入设备的轴类型

**系统能力:**  以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.InputDevice

| 名称        | 参数类型 | 说明              |
| ----------- | -------- | ----------------- |
| touchMajor  | string   | 表示touchMajor轴  |
| touchMinor  | string   | 表示touchMinor轴  |
| toolMinor   | string   | 表示toolMinor轴   |
| toolMajor   | string   | 表示toolMajor轴   |
| orientation | string   | 表示orientation轴 |
| pressure    | string   | 表示pressure轴    |
| x           | string   | 表示x轴           |
| y           | string   | 表示y轴           |
| NULL        | string   | 无                |
M
mayunteng_1 已提交
499 500 501 502 503 504 505

## AxisRange

输入设备的轴信息

**系统能力:**  以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.InputDevice

H
hungry_feiwei 已提交
506 507 508 509 510 511 512 513 514
| 名称       | 参数类型                  | 说明             |
| ---------- | ------------------------- | ---------------- |
| source     | [SourceType](#sourcetype) | 轴的输入源类型。 |
| axis       | [AxisType](axistype)      | 轴的类型         |
| max        | number                    | 轴上报的最大值   |
| min        | number                    | 轴上报的最小值   |
| fuzz       | number                    |                  |
| flat       | number                    |                  |
| resolution | number                    |                  |
Z
zengyawen 已提交
515 516 517 518 519

## SourceType

定义这个轴的输入源类型。比如鼠标设备可上报x轴事件,则x轴的源就是鼠标。

M
mayunteng_1 已提交
520
**系统能力:**  以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.InputDevice
Z
zengyawen 已提交
521

H
HelloCrease 已提交
522 523 524
| 名称          | 参数类型   | 说明          |
| ----------- | ------ | ----------- |
| keyboard    | string | 表示输入设备是键盘。  |
M
mayunteng_1 已提交
525
| touchscreen | string | 表示输入设备是触摸屏。 |
H
HelloCrease 已提交
526 527 528 529
| mouse       | string | 表示输入设备是鼠标。  |
| trackball   | string | 表示输入设备是轨迹球。 |
| touchpad    | string | 表示输入设备是触摸板。 |
| joystick    | string | 表示输入设备是操纵杆。 |
M
mayunteng_1 已提交
530

H
hungry_feiwei 已提交
531 532 533 534 535 536 537 538 539 540 541 542
## ChangeType

定义监听设备热插拔事件。

**系统能力:**  以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.InputDevice

| 名称   | 参数类型 | 说明               |
| ------ | -------- | ------------------ |
| add    | string   | 表示输入设备插入。 |
| remove | string   | 表示输入设备移除。 |

## KeyboardType
M
mayunteng_1 已提交
543

H
hungry_feiwei 已提交
544
定义键盘输入设备的类型。
M
mayunteng_1 已提交
545 546 547

**系统能力:**  以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.InputDevice

H
hungry_feiwei 已提交
548 549 550 551 552 553 554 555
| 名称                | 参数类型 | 值   | 说明             |
| ------------------- | -------- | ---- | ---------------- |
| NONE                | number   | 0    | 表示无按键设备   |
| UNKNOWN             | number   | 1    | 表示未知按键设备 |
| ALPHABETIC_KEYBOARD | number   | 2    | 表示全键盘设备   |
| DIGITAL_KEYBOARD    | number   | 3    | 表示小键盘设备   |
| HANDWRITING_PEN     | number   | 4    | 表示手写笔设备   |
| REMOTE_CONTROL      | number   | 5    | 表示遥控器设备   |