js-apis-inputmethodengine.md 69.0 KB
Newer Older
Z
zhouyongfei 已提交
1 2
# 输入法服务

3 4
  本模块的作用是拉通应用和输入法,保证应用可以通过输入法进行文本输入,以及应用与输入法服务的绑定、应用对输入法的显示和隐藏请求、监听输入法当前的状态等等。

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

## 导入模块

```
11
import inputMethodEngine from '@ohos.inputmethodengine';
Z
zhouyongfei 已提交
12 13 14 15 16 17
```

## inputMethodEngine

常量值。

18
**系统能力**:以下各项对应的系统能力均为SystemCapability.MiscServices.InputMethodFramework
Z
刷新  
zhouyongfei 已提交
19

Z
zhouyongfei 已提交
20 21
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
Z
刷新  
zhouyongfei 已提交
22 23 24 25 26 27 28 29 30 31
| ENTER_KEY_TYPE_UNSPECIFIED | number | 是 | 否 | 无功能键。 |
| ENTER_KEY_TYPE_GO | number | 是 | 否 | “前往”功能键。 |
| ENTER_KEY_TYPE_SEARCH | number | 是 | 否 | “搜索”功能键。 |
| ENTER_KEY_TYPE_SEND | number | 是 | 否 | “发送”功能键。 |
| ENTER_KEY_TYPE_NEXT | number | 是 | 否 | “下一个”功能键。 |
| ENTER_KEY_TYPE_DONE | number | 是 | 否 | “回车”功能键。 |
| ENTER_KEY_TYPE_PREVIOUS | number | 是 | 否 | “前一个”功能键。 |
| PATTERN_NULL | number | 是 | 否 | 无特殊性编辑框。 |
| PATTERN_TEXT | number | 是 | 否 | 文本编辑框。 |
| PATTERN_NUMBER | number | 是 | 否 | 数字编辑框。 |
32
| PATTERN_PHONE | number | 是 | 否 | 电话号码编辑框。 |
Z
刷新  
zhouyongfei 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| PATTERN_DATETIME | number | 是 | 否 | 日期编辑框。 |
| PATTERN_EMAIL | number | 是 | 否 | 邮件编辑框。 |
| PATTERN_URI | number | 是 | 否 | 超链接编辑框。 |
| PATTERN_PASSWORD | number | 是 | 否 | 密码编辑框。 |
| OPTION_ASCII | number | 是 | 否 | 允许输入ASCII值。 |
| OPTION_NONE | number | 是 | 否 | 不指定编辑框输入属性。 |
| OPTION_AUTO_CAP_CHARACTERS | number | 是 | 否 | 允许输入字符。 |
| OPTION_AUTO_CAP_SENTENCES | number | 是 | 否 | 允许输入句子。 |
| OPTION_AUTO_WORDS | number | 是 | 否 | 允许输入单词。 |
| OPTION_MULTI_LINE | number | 是 | 否 | 允许输入多行。 |
| OPTION_NO_FULLSCREEN | number | 是 | 否 | 半屏样式。 |
| FLAG_SELECTING | number | 是 | 否 | 编辑框处于选择状态。 |
| FLAG_SINGLE_LINE | number | 是 | 否 | 编辑框为单行。 |
| DISPLAY_MODE_PART | number | 是 | 否 | 编辑框显示为半屏。 |
| DISPLAY_MODE_FULL | number | 是 | 否 | 编辑框显示为全屏。 |
Z
zhaolinglan 已提交
48 49 50 51 52
| CURSOR_UP<sup>9+</sup> | number | 是 | 否 | 光标上移。 |
| CURSOR_DOWN<sup>9+</sup> | number | 是 | 否 | 光标下移。 |
| CURSOR_LEFT<sup>9+</sup> | number | 是 | 否 | 光标左移。 |
| CURSOR_RIGHT<sup>9+</sup> | number | 是 | 否 | 光标右移。 |
| WINDOW_TYPE_INPUT_METHOD_FLOAT<sup>9+</sup> | number | 是 | 否 | 输入法应用窗口风格标识。 |
Z
zhouyongfei 已提交
53

H
Hollokin 已提交
54
## inputMethodEngine.getInputMethodEngine<a name="getInputMethodEngine"></a><sup>(deprecated)</sup>
Z
zhouyongfei 已提交
55 56 57

getInputMethodEngine(): InputMethodEngine

Z
refresh  
zhouyongfei 已提交
58
获取服务端实例。
Z
zhouyongfei 已提交
59

H
Hollokin 已提交
60 61 62 63 64
> **说明:** 
> 从API version 9开始废弃, 建议使用[getInputMethodAbility](#getInputMethodAbility)替代
>
> 从 API version 8开始支持。

65
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
66

67
**返回值:**
Z
zhouyongfei 已提交
68

W
wz 已提交
69 70 71
| 类型                                    | 说明         |
| --------------------------------------- | ------------ |
| [InputMethodEngine](#InputMethodEngine) | 服务端实例。 |
Z
zhouyongfei 已提交
72

73
**示例:**
Z
zhouyongfei 已提交
74

75
  ```js
Z
zhouyongfei 已提交
76 77 78
  var InputMethodEngine = inputMethodEngine.getInputMethodEngine();
  ```

H
Hollokin 已提交
79
## inputMethodEngine.getInputMethodAbility<a name="getInputMethodAbility"></a><sup>9+</sup>
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98

getInputMethodAbility(): InputMethodAbility

获取服务端实例。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**返回值:**

| 类型                                    | 说明         |
| --------------------------------------- | ------------ |
| [InputMethodAbility](#InputMethodAbility) | 服务端实例。 |

**示例:**

  ```js
  var InputMethodAbility = inputMethodAbility.getInputMethodAbility();
  ```

H
Hollokin 已提交
99
## inputMethodEngine.createKeyboardDelegate<a name="createKeyboardDelegate"></a><sup>(deprecated)</sup>
Z
zhouyongfei 已提交
100 101 102

createKeyboardDelegate(): KeyboardDelegate

Z
refresh  
zhouyongfei 已提交
103
获取客户端监听实例。
Z
zhouyongfei 已提交
104

H
Hollokin 已提交
105 106 107 108 109
> **说明:** 
> 从API version 9开始废弃, 建议使用[getKeyboardDelegate](#getKeyboardDelegate)替代
>
> 从 API version 8开始支持。

110
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
111

112
**返回值:**
Z
zhouyongfei 已提交
113

W
wz 已提交
114 115 116
| 类型                                  | 说明             |
| ------------------------------------- | ---------------- |
| [KeyboardDelegate](#KeyboardDelegate) | 客户端监听实例。 |
Z
zhouyongfei 已提交
117

118
**示例:**
Z
zhouyongfei 已提交
119

120
  ```js
Z
zhouyongfei 已提交
121 122 123
  var KeyboardDelegate = inputMethodEngine.createKeyboardDelegate();
  ```

H
Hollokin 已提交
124
## inputMethodEngine.getKeyboardDelegate<a name="getKeyboardDelegate"></a>
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143

getKeyboardDelegate(): KeyboardDelegate

获取客户端监听实例。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**返回值:**

| 类型                                  | 说明             |
| ------------------------------------- | ---------------- |
| [KeyboardDelegate](#KeyboardDelegate) | 客户端监听实例。 |

**示例:**

  ```js
  var KeyboardDelegate = inputMethodAbility.getKeyboardDelegate();
  ```

Z
zhouyongfei 已提交
144 145 146 147 148 149
## InputMethodEngine<a name="InputMethodEngine"></a>

下列API示例中都需使用[getInputMethodEngine](#getInputMethodEngine)回调获取到InputMethodEngine实例,再通过此实例调用对应方法。

### on('inputStart')<a name="inputStart"></a>

Z
zhouyongfei 已提交
150
on(type: 'inputStart', callback: (kbController: KeyboardController, textInputClient: TextInputClient) => void): void
Z
zhouyongfei 已提交
151

152
订阅输入法绑定成功事件,使用callback回调返回输入法操作相关实例。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。
Z
zhouyongfei 已提交
153

154
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
155

156
**参数:**
Z
zhouyongfei 已提交
157 158 159 160

| 参数名   | 类型                            | 必填 | 说明                                                         |
| -------- | ------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                        | 是   | 设置监听类型。<br/>-type为‘inputStart’时表示订阅输入法绑定。 |
Z
refresh  
zhouyongfei 已提交
161
| callback | [KeyboardController](#KeyboardController), [TextInputClient](#TextInputClient) | 是 | 回调返回输入法操作相关实例。 |
Z
zhouyongfei 已提交
162

163
**示例:**
Z
zhouyongfei 已提交
164

165
  ```js
H
Hollokin 已提交
166
  inputMethodEngine.getInputMethodEngine().on('inputStart', (kbController, textInputClient) => {
Z
zhouyongfei 已提交
167 168 169 170 171 172 173
      KeyboardController = kbController;
      TextInputClient = textInputClient;
  });
  ```

### off('inputStart')

Z
zhouyongfei 已提交
174
off(type: 'inputStart', callback?: (kbController: KeyboardController, textInputClient: TextInputClient) => void): void
Z
zhouyongfei 已提交
175

176
取消订阅输入法绑定成功事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。
Z
zhouyongfei 已提交
177

178
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
179

180
**参数:**
Z
zhouyongfei 已提交
181

W
wz 已提交
182 183 184 185
| 参数名   | 类型                 | 必填 | 说明                     |
| -------- | -------------------- | ---- | ------------------------ |
| type | string                                                       | 是   | 设置监听类型。<br/>-type为‘inputStart’时表示订阅输入法绑定。 |
| callback | [KeyboardController](#KeyboardController), [TextInputClient](#TextInputClient) | 否 | 回调返回输入法操作相关实例。 |
Z
zhouyongfei 已提交
186 187 188



189
**示例:**
Z
zhouyongfei 已提交
190

191
  ```js
H
Hollokin 已提交
192
  inputMethodEngine.getInputMethodEngine().off('inputStart', (kbController, textInputClient) => {
Z
zhaolinglan 已提交
193
      console.log('delete inputStart notification.');
194
  });
Z
zhouyongfei 已提交
195 196
  ```

Z
zhaolinglan 已提交
197 198 199 200
### on('inputStop')<sup>9+</sup>

on(type: 'inputStop', callback: () => void): void

Z
zhaolinglan 已提交
201
订阅停止输入法应用事件,使用callback回调。
Z
zhaolinglan 已提交
202 203 204 205 206 207 208

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
Z
zhaolinglan 已提交
209
| type     | string | 是   | 设置监听类型。<br/>-type为‘inputStop’时表示订阅停止输入法应用事件。 |
Z
zhaolinglan 已提交
210 211 212 213 214
| callback | void   | 是   | 回调函数。                                                   |

**示例:**

  ```js
H
Hollokin 已提交
215
inputMethodEngine.getInputMethodEngine().on('inputStop', () => {
Z
zhaolinglan 已提交
216
    console.log('inputMethodEngine inputStop');
Z
zhaolinglan 已提交
217 218 219 220 221 222 223
});
  ```

### off('inputStop')<sup>9+</sup>

off(type: 'inputStop', callback: () => void): void

Z
zhaolinglan 已提交
224
取消订阅停止输入法应用事件。使用callback回调。
Z
zhaolinglan 已提交
225 226 227 228 229

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

Z
zhaolinglan 已提交
230 231 232 233
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-type为‘inputStop’时表示订阅停止输入法应用事件。 |
| callback | void   | 是   | 回调函数。                                                   |
Z
zhaolinglan 已提交
234 235 236 237

**示例:**

  ```js
H
Hollokin 已提交
238
inputMethodEngine.getInputMethodEngine().off('inputStop', () => {
Z
zhaolinglan 已提交
239
    console.log('inputMethodEngine delete inputStop notification.');
Z
zhaolinglan 已提交
240 241 242 243 244 245 246 247 248 249 250 251 252
});
  ```

### on('setCallingWindow')<sup>9+</sup>

on(type: 'setCallingWindow', callback: (wid:number) => void): void

订阅设置调用窗口事件,使用callback回调。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

Z
zhaolinglan 已提交
253 254 255 256
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-type为‘setCallingWindow’时表示订阅设置调用窗口事件。 |
| callback | number | 是   | 调用方window id。                                            |
Z
zhaolinglan 已提交
257 258 259 260

**示例:**

  ```js
H
Hollokin 已提交
261
inputMethodEngine.getInputMethodEngine().on('setCallingWindow', (wid) => {
Z
zhaolinglan 已提交
262
    console.log('inputMethodEngine setCallingWindow');
Z
zhaolinglan 已提交
263 264 265 266 267 268 269
});
  ```

### off('setCallingWindow')<sup>9+</sup>

off(type: 'setCallingWindow', callback: (wid:number) => void): void

Z
zhaolinglan 已提交
270
取消订阅设置调用窗口事件。使用callback回调。
Z
zhaolinglan 已提交
271 272 273 274 275 276 277 278 279 280 281 282 283

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-type为‘setCallingWindow’时表示订阅设置调用窗口事件。 |
| callback | number | 是   | 调用方window id。                                 |

**示例:**

  ```js
H
Hollokin 已提交
284
inputMethodEngine.getInputMethodEngine().off('setCallingWindow', () => {
Z
zhaolinglan 已提交
285
    console.log('inputMethodEngine delete setCallingWindow notification.');
Z
zhaolinglan 已提交
286 287 288
});
  ```

Z
zhouyongfei 已提交
289 290
### on('keyboardShow'|'keyboardHide')

Z
zhouyongfei 已提交
291
on(type: 'keyboardShow'|'keyboardHide', callback: () => void): void
Z
zhouyongfei 已提交
292

293
订阅输入法事件。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。
Z
zhouyongfei 已提交
294

295
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
296

297
**参数:**
Z
zhouyongfei 已提交
298

W
wz 已提交
299 300 301 302
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-&nbsp;type为'keyboardShow',表示订阅输入法显示。<br/>-&nbsp;type为'keyboardHide',表示订阅输入法隐藏。 |
| callback | void   | 否   | 回调函数。                                                   |
Z
zhouyongfei 已提交
303

304
**示例:**
Z
zhouyongfei 已提交
305

306
  ```js
H
Hollokin 已提交
307
  inputMethodEngine.getInputMethodEngine().on('keyboardShow', () => {
Z
zhaolinglan 已提交
308
      console.log('inputMethodEngine keyboardShow.');
309
  });
H
Hollokin 已提交
310
  inputMethodEngine.getInputMethodEngine().on('keyboardHide', () => {
Z
zhaolinglan 已提交
311
      console.log('inputMethodEngine keyboardHide.');
Z
zhouyongfei 已提交
312 313 314 315 316
  });
  ```

### off('keyboardShow'|'keyboardHide')

Z
zhouyongfei 已提交
317
off(type: 'keyboardShow'|'keyboardHide', callback?: () => void): void
Z
zhouyongfei 已提交
318

319
取消订阅输入法事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。
Z
zhouyongfei 已提交
320

321
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
322

323
**参数:**
Z
zhouyongfei 已提交
324

W
wz 已提交
325 326 327 328
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-&nbsp;type为'keyboardShow',表示订阅输入法显示。<br/>-&nbsp;type为'keyboardHide',表示订阅输入法隐藏。 |
| callback | void   | 否   | 回调函数。                                                   |
Z
zhouyongfei 已提交
329

330
**示例:**
Z
zhouyongfei 已提交
331

332
  ```js
H
Hollokin 已提交
333
  inputMethodEngine.getInputMethodEngine().off('keyboardShow', () => {
Z
zhaolinglan 已提交
334
      console.log('inputMethodEngine delete keyboardShow notification.');
335
  });
H
Hollokin 已提交
336
  inputMethodEngine.getInputMethodEngine().off('keyboardHide', () => {
Z
zhaolinglan 已提交
337
      console.log('inputMethodEngine delete keyboardHide notification.');
338
  });
Z
zhouyongfei 已提交
339
  ```
W
wz 已提交
340

341 342
## InputMethodAbility<a name="InputMethodAbility"></a>

H
Hollokin 已提交
343
下列API示例中都需使用[getInputMethodAbility](#getInputMethodAbility)回调获取到InputMethodAbility实例,再通过此实例调用对应方法。
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362

### on('inputStart')<a name="inputStart"></a><sup>9+</sup>

on(type: 'inputStart', callback: (kbController: KeyboardController, inputClient: InputClient) => void): void

订阅输入法绑定成功事件,使用callback回调返回输入法操作相关实例。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型                            | 必填 | 说明                                                         |
| -------- | ------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                        | 是   | 设置监听类型。<br/>-type为‘inputStart’时表示订阅输入法绑定。 |
| callback | [KeyboardController](#KeyboardController), [InputClient](#InputClient) | 是 | 回调返回输入法操作相关实例。 |

**示例:**

  ```js
H
Hollokin 已提交
363
  inputMethodEngine.getInputMethodAbility().on('inputStart', (kbController, inputClient) => {
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
      KeyboardController = kbController;
      InputClient = inputClient;
  });
  ```

### off('inputStart')<sup>9+</sup>

off(type: 'inputStart', callback?: (kbController: KeyboardController, inputClient: InputClient) => void): void

取消订阅输入法绑定成功事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型                 | 必填 | 说明                     |
| -------- | -------------------- | ---- | ------------------------ |
| type | string                                                       | 是   | 设置监听类型。<br/>-type为‘inputStart’时表示订阅输入法绑定。 |
| callback | [KeyboardController](#KeyboardController), [InputClient](#InputClient) | 否 | 回调返回输入法操作相关实例。 |

**示例:**

  ```js
H
Hollokin 已提交
387
  inputMethodEngine.getInputMethodAbility().off('inputStart', (kbController, inputClient) => {
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
      console.log('delete inputStart notification.');
  });
  ```

### on('inputStop')<sup>9+</sup>

on(type: 'inputStop', callback: () => void): void

订阅停止输入法应用事件,使用callback回调。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-type为‘inputStop’时表示订阅停止输入法应用事件。 |
| callback | void   | 是   | 回调函数。                                                   |

**示例:**

  ```js
H
Hollokin 已提交
410
inputMethodEngine.getInputMethodAbility().on('inputStop', () => {
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
    console.log('inputMethodAbility inputStop');
});
  ```

### off('inputStop')<sup>9+</sup>

off(type: 'inputStop', callback: () => void): void

取消订阅停止输入法应用事件。使用callback回调。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-type为‘inputStop’时表示订阅停止输入法应用事件。 |
| callback | void   | 是   | 回调函数。                                                   |

**示例:**

  ```js
H
Hollokin 已提交
433
inputMethodEngine.getInputMethodAbility().off('inputStop', () => {
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
    console.log('inputMethodAbility delete inputStop notification.');
});
  ```

### on('setCallingWindow')<sup>9+</sup>

on(type: 'setCallingWindow', callback: (wid:number) => void): void

订阅设置调用窗口事件,使用callback回调。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-type为‘setCallingWindow’时表示订阅设置调用窗口事件。 |
| callback | number | 是   | 调用方window id。                                            |

**示例:**

  ```js
H
Hollokin 已提交
456
inputMethodEngine.getInputMethodAbility().on('setCallingWindow', (wid) => {
457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
    console.log('inputMethodAbility setCallingWindow');
});
  ```

### off('setCallingWindow')<sup>9+</sup>

off(type: 'setCallingWindow', callback: (wid:number) => void): void

取消订阅设置调用窗口事件。使用callback回调。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-type为‘setCallingWindow’时表示订阅设置调用窗口事件。 |
| callback | number | 是   | 调用方window id。                                 |

**示例:**

  ```js
H
Hollokin 已提交
479
inputMethodEngine.getInputMethodAbility().off('setCallingWindow', () => {
480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
    console.log('inputMethodAbility delete setCallingWindow notification.');
});
  ```

### on('keyboardShow'|'keyboardHide')<sup>9+</sup>

on(type: 'keyboardShow'|'keyboardHide', callback: () => void): void

订阅输入法事件。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-&nbsp;type为'keyboardShow',表示订阅输入法显示。<br/>-&nbsp;type为'keyboardHide',表示订阅输入法隐藏。 |
| callback | void   | 否   | 回调函数。                                                   |

**示例:**

  ```js
H
Hollokin 已提交
502
  inputMethodEngine.getInputMethodAbility().on('keyboardShow', () => {
503 504
      console.log('InputMethodAbility keyboardShow.');
  });
H
Hollokin 已提交
505
  inputMethodEngine.getInputMethodAbility().on('keyboardHide', () => {
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
      console.log('InputMethodAbility keyboardHide.');
  });
  ```

### off('keyboardShow'|'keyboardHide')<sup>9+</sup>

off(type: 'keyboardShow'|'keyboardHide', callback?: () => void): void

取消订阅输入法事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-&nbsp;type为'keyboardShow',表示订阅输入法显示。<br/>-&nbsp;type为'keyboardHide',表示订阅输入法隐藏。 |
| callback | void   | 否   | 回调函数。                                                   |

**示例:**

  ```js
H
Hollokin 已提交
528
  inputMethodEngine.getInputMethodAbility().off('keyboardShow', () => {
529 530
      console.log('InputMethodAbility delete keyboardShow notification.');
  });
H
Hollokin 已提交
531
  inputMethodEngine.getInputMethodAbility().off('keyboardHide', () => {
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
      console.log('InputMethodAbility delete keyboardHide notification.');
  });
  ```

### on('setSubtype')<sup>9+</sup>

on(type: 'setSubtype', callback: (inputMethodSubtype: InputMethodSubtype) => void): void

订阅设置输入法子类型事件。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-&nbsp;type为'setSubtype',表示订阅输入法显示。<br/>-&nbsp;type为'keyboardHide',表示订阅输入法隐藏。 |
| callback | InputMethodSubtype   | 是   | 调用方的输入法子类型。                                                   |

**示例:**

  ```js
H
Hollokin 已提交
554
  inputMethodEngine.getInputMethodAbility().on('setSubtype', (inputMethodSubtype) => {
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
      console.log('InputMethodAbility setSubtype.');
  });
  ```

### off('setSubtype')<sup>9+</sup>

off(type: 'setSubtype', callback?: () => void): void

取消订阅输入法子类型事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-&nbsp;type为'setSubtype',表示订阅输入法显示。<br/>-&nbsp;type为'keyboardHide',表示订阅输入法隐藏。 |
| callback | InputMethodSubtype   | 是   | 调用方的输入法子类型。                                                   |

**示例:**

  ```js
H
Hollokin 已提交
577
  inputMethodEngine.getInputMethodAbility().off('setSubtype', () => {
578 579 580
      console.log('InputMethodAbility delete setSubtype notification.');
  });
  ```
Z
zhouyongfei 已提交
581 582 583

## KeyboardDelegate<a name="KeyboardDelegate"></a>

H
Hollokin 已提交
584
下列API示例中都需使用[getKeyboardDelegate](#getKeyboardDelegate)回调获取到KeyboardDelegate实例,再通过此实例调用对应方法。
Z
zhouyongfei 已提交
585 586 587

### on('keyDown'|'keyUp')

Z
zhouyongfei 已提交
588
on(type: 'keyDown'|'keyUp', callback: (event: KeyEvent) => boolean): void
Z
zhouyongfei 已提交
589

590
订阅硬键盘事件,使用callback回调返回按键信息。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。
Z
zhouyongfei 已提交
591

592
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
593

594
**参数:**
Z
zhouyongfei 已提交
595

W
wz 已提交
596 597 598 599
| 参数名   | 类型                            | 必填 | 说明                                                         |
| -------- | ------------------------------- | ---- | ------------------------------------------------------------ |
| type   | string         | 是   | 设置监听类型。<br/>-&nbsp;type为'keyDown',表示订阅硬键盘按下。<br/>-&nbsp;type为'keyUp',表示订阅硬键盘抬起。 |
| callback | [KeyEvent](#KeyEvent) | 是 | 回调返回按键信息。 |
Z
zhouyongfei 已提交
600

601
**示例:**
Z
zhouyongfei 已提交
602

603
  ```js
H
Hollokin 已提交
604
  inputMethodEngine.getKeyboardDelegate().on('keyUp', (keyEvent) => {
Z
zhaolinglan 已提交
605 606
      console.info('inputMethodEngine keyCode.(keyUp):' + JSON.stringify(keyEvent.keyCode));
      console.info('inputMethodEngine keyAction.(keyUp):' + JSON.stringify(keyEvent.keyAction));
607 608
      return true;
  });
H
Hollokin 已提交
609
  inputMethodEngine.getKeyboardDelegate().on('keyDown', (keyEvent) => {
Z
zhaolinglan 已提交
610 611
      console.info('inputMethodEngine keyCode.(keyDown):' + JSON.stringify(keyEvent.keyCode));
      console.info('inputMethodEngine keyAction.(keyDown):' + JSON.stringify(keyEvent.keyAction));
612
      return true;
Z
zhouyongfei 已提交
613 614 615 616 617
  });
  ```

### off('keyDown'|'keyUp')

Z
zhouyongfei 已提交
618
off(type: 'keyDown'|'keyUp', callback?: (event: KeyEvent) => boolean): void
Z
zhouyongfei 已提交
619

620
取消订阅硬键盘事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。
Z
zhouyongfei 已提交
621

622
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
623

624
**参数:**
Z
zhouyongfei 已提交
625

W
wz 已提交
626 627 628 629
| 参数名   | 类型                  | 必填 | 说明                                                         |
| -------- | --------------------- | ---- | ------------------------------------------------------------ |
| type     | string                | 是   | 设置监听类型。<br/>-&nbsp;type为'keyDown',表示订阅硬键盘按下。<br/>-&nbsp;type为'keyUp',表示订阅硬键盘抬起。 |
| callback | [KeyEvent](#KeyEvent) | 否   | 回调返回按键信息。                                           |
Z
zhouyongfei 已提交
630

631
**示例:**
Z
zhouyongfei 已提交
632

633
  ```js
H
Hollokin 已提交
634
  inputMethodEngine.getKeyboardDelegate().off('keyUp', (keyEvent) => {
Z
zhaolinglan 已提交
635
      console.log('delete keyUp notification.');
636 637
      return true;
  });
H
Hollokin 已提交
638
  inputMethodEngine.getKeyboardDelegate().off('keyDown', (keyEvent) => {
Z
zhaolinglan 已提交
639
      console.log('delete keyDown notification.');
640 641
      return true;
  });
Z
zhouyongfei 已提交
642 643 644 645
  ```

### on('cursorContextChange')

Z
zhouyongfei 已提交
646
on(type: 'cursorContextChange', callback: (x: number, y:number, height:number) => void): void
Z
zhouyongfei 已提交
647

648
订阅光标变化事件,使用callback回调返回光标信息。使用callback回调返回光标信息。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。
Z
zhouyongfei 已提交
649

650
  **系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
651

652
  **参数:**
Z
zhouyongfei 已提交
653

W
wz 已提交
654 655 656 657
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 光标变化事件。<br/>-type为’cursorContextChange‘时,表示光标变化。 |
| callback | number | 是   | 回调返回光标信息。                                           |
Z
zhouyongfei 已提交
658 659 660



661
  **示例:**
W
wz 已提交
662 663

```js
H
Hollokin 已提交
664
inputMethodEngine.getKeyboardDelegate().on('cursorContextChange', (x, y, height) => {
Z
zhaolinglan 已提交
665 666 667
    console.log('inputMethodEngine cursorContextChange x:' + x);
    console.log('inputMethodEngine cursorContextChange y:' + y);
    console.log('inputMethodEngine cursorContextChange height:' + height);
W
wz 已提交
668 669
});
```
Z
zhouyongfei 已提交
670 671 672

### off('cursorContextChange')

Z
zhouyongfei 已提交
673
off(type: 'cursorContextChange', callback?: (x: number, y:number, height:number) => void): void
Z
zhouyongfei 已提交
674

675
取消订阅光标变化事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。
Z
zhouyongfei 已提交
676

677
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
678

679
  **参数:**
Z
zhouyongfei 已提交
680

W
wz 已提交
681 682 683 684
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 光标变化事件。<br/>-type为’cursorContextChange‘时,表示光标变化。 |
| callback | number | 否   | 回调返回光标信息。                                           |
Z
zhouyongfei 已提交
685 686


687
  **示例:**
Z
zhouyongfei 已提交
688

W
wz 已提交
689
```js
H
Hollokin 已提交
690
inputMethodEngine.getKeyboardDelegate().off('cursorContextChange', (x, y, height) => {
Z
zhaolinglan 已提交
691
    console.log('delete cursorContextChange notification.');
692
});
W
wz 已提交
693
```
Z
zhouyongfei 已提交
694 695
### on('selectionChange')

Z
zhouyongfei 已提交
696
on(type: 'selectionChange', callback: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void): void
Z
zhouyongfei 已提交
697

698
订阅文本选择变化事件,使用callback回调返回文本选择信息。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。
Z
zhouyongfei 已提交
699

700
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
701

702
  **参数:**
Z
zhouyongfei 已提交
703

W
wz 已提交
704 705 706 707
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 文本选择变化事件。<br/>-type为’selectionChange‘时,表示选择文本变化。 |
| callback | number | 是   | 回调返回文本选择信息。                                       |
Z
zhouyongfei 已提交
708

709
  **示例:**
W
wz 已提交
710 711

```js
H
Hollokin 已提交
712
inputMethodEngine.getKeyboardDelegate().on('selectionChange', (oldBegin, oldEnd, newBegin, newEnd) => {
Z
zhaolinglan 已提交
713 714 715 716
    console.log('inputMethodEngine beforeEach selectionChange oldBegin:' + oldBegin);
    console.log('inputMethodEngine beforeEach selectionChange oldEnd:' + oldEnd);
    console.log('inputMethodEngine beforeEach selectionChange newBegin:' + newBegin);
    console.log('inputMethodEngine beforeEach selectionChange newEnd:' + newEnd);
W
wz 已提交
717 718
});
```
Z
zhouyongfei 已提交
719 720 721

### off('selectionChange')

Z
zhouyongfei 已提交
722
off(type: 'selectionChange', callback?: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void): void
Z
zhouyongfei 已提交
723

724
取消订阅文本选择变化事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。
Z
zhouyongfei 已提交
725

726
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
727

728
  **参数:**
Z
zhouyongfei 已提交
729

W
wz 已提交
730 731 732 733
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 文本选择变化事件。<br/>-type为’selectionChange‘时,表示选择文本变化。 |
| callback | number | 否   | 回调返回文本选择信息。                                       |
Z
zhouyongfei 已提交
734

735
  **示例:**
Z
zhouyongfei 已提交
736

W
wz 已提交
737
```js
H
Hollokin 已提交
738
inputMethodEngine.getKeyboardDelegate().off('selectionChange', (oldBegin, oldEnd, newBegin, newEnd) => {
Z
zhaolinglan 已提交
739
  console.log('delete selectionChange notification.');
740
});
W
wz 已提交
741
```
Z
zhouyongfei 已提交
742 743 744 745


### on('textChange')

Z
zhouyongfei 已提交
746
on(type: 'textChange', callback: (text: string) => void): void
Z
zhouyongfei 已提交
747

748
订阅文本变化事件,使用callback回调返回当前文本内容。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。
Z
zhouyongfei 已提交
749

750
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
751

752
  **参数:**
Z
zhouyongfei 已提交
753

W
wz 已提交
754 755 756 757
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 文本变化事件。<br/>-type为’textChange‘时,表示当前文本变化。 |
| callback | string | 是   | 回调返回当前文本内容。                                       |
Z
zhouyongfei 已提交
758

759
  **示例:**
Z
zhouyongfei 已提交
760

W
wz 已提交
761
```js
H
Hollokin 已提交
762
inputMethodEngine.getKeyboardDelegate().on('textChange', (text) => {
Z
zhaolinglan 已提交
763
    console.log('inputMethodEngine textChange. text:' + text);
W
wz 已提交
764 765
});
```
Z
zhouyongfei 已提交
766 767 768

### off('textChange')

Z
zhouyongfei 已提交
769
off(type: 'textChange', callback?: (text: string) => void): void
Z
zhouyongfei 已提交
770

771
取消订阅文本变化事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。
Z
zhouyongfei 已提交
772

773
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
774

775
  **参数:**
Z
zhouyongfei 已提交
776

W
wz 已提交
777 778 779 780
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 文本变化事件。<br/>-type为’textChange‘时,表示当前文本变化。 |
| callback | string | 否   | 回调返回当前文本内容。                                       |
Z
zhouyongfei 已提交
781

782
  **示例:**
Z
zhouyongfei 已提交
783

W
wz 已提交
784
```js
H
Hollokin 已提交
785
inputMethodEngine.getKeyboardDelegate().off('textChange', (text) => {
Z
zhaolinglan 已提交
786
    console.log('delete textChange notification. text:' + text);
787
});
W
wz 已提交
788
```
Z
zhouyongfei 已提交
789 790 791 792 793 794 795 796 797

## KeyboardController<a name="KeyboardController"></a>

下列API示例中都需使用[inputStart](#inputStart)回调获取到KeyboardController实例,再通过此实例调用对应方法。

### hideKeyboard

hideKeyboard(callback: AsyncCallback&lt;void&gt;): void

798
隐藏输入法。使用callback形式返回结果。参数个数为1,否则抛出异常。
Z
zhouyongfei 已提交
799

800
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
801

802
**参数:**
Z
refresh  
zhouyongfei 已提交
803

W
wz 已提交
804 805 806
| 参数名   | 类型                   | 必填 | 说明     |
| -------- | ---------------------- | ---- | -------- |
| callback | AsyncCallback&lt;void> | 否   | 回调函数 |
Z
refresh  
zhouyongfei 已提交
807

808
**示例:**
Z
zhouyongfei 已提交
809

810
```js
811
KeyboardController.hideKeyboard((err) => {
Z
zhaolinglan 已提交
812
    if (err === undefined) {
H
Hollokin 已提交
813
        console.error('hideKeyboard callback result---err: ' + JSON.stringify(err));
814 815
        return;
    }
Z
zhaolinglan 已提交
816
    console.log('hideKeyboard callback.');
817
});
Z
zhouyongfei 已提交
818 819 820 821 822 823
```

### hideKeyboard

hideKeyboard(): Promise&lt;void&gt;

824
隐藏输入法。使用peomise形式返回结果。参数个数为0,否则抛出异常。
Z
zhouyongfei 已提交
825

826
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
827

828
**返回值:**
Z
refresh  
zhouyongfei 已提交
829

830 831 832
| 类型             | 说明                      |
| ---------------- | ------------------------- |
| Promise&lt;void> | 无返回结果的Promise对象。 |
Z
refresh  
zhouyongfei 已提交
833

834
**示例:**
Z
zhouyongfei 已提交
835

836
```js
837 838
async function InputMethodEngine() {
    await KeyboardController.hideKeyboard().then(() => {
Z
zhaolinglan 已提交
839
        console.info('hideKeyboard promise.');
840
    }).catch((err) => {
H
Hollokin 已提交
841
        console.info('hideKeyboard promise err: ' + JSON.stringify(err));
842 843
    });
}
Z
zhouyongfei 已提交
844 845 846 847 848 849
```

## TextInputClient<a name="TextInputClient"></a>

下列API示例中都需使用[inputStart](#inputStart)回调获取到TextInputClient实例,再通过此实例调用对应方法。

H
Hollokin 已提交
850
### getForward<sup>(deprecated)</sup>
Z
zhouyongfei 已提交
851 852 853

getForward(length:number, callback: AsyncCallback&lt;string&gt;): void

854
获取光标前固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。
Z
zhouyongfei 已提交
855

856 857 858 859 860
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getForward](#InputClient.getForward)替代
>
> 从 API version 8开始支持。

861
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
862

863
**参数:**
Z
zhouyongfei 已提交
864

W
wz 已提交
865 866 867 868
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
| callback | AsyncCallback&lt;string&gt; | 是 | 返回文本。 |
Z
zhouyongfei 已提交
869

870 871
**示例:**

872
  ```js
873 874
  var length = 1;
  TextInputClient.getForward(length, (err, text) => {
Z
zhaolinglan 已提交
875
      if (err === undefined) {
H
Hollokin 已提交
876
          console.error('getForward callback result---err: ' + JSON.stringify(err));
877 878
          return;
      }
Z
zhaolinglan 已提交
879
      console.log('getForward callback result---text: ' + text);
880
  });
Z
zhouyongfei 已提交
881 882
  ```

H
Hollokin 已提交
883
### getForward<sup>(deprecated)</sup>
Z
zhouyongfei 已提交
884 885 886

getForward(length:number): Promise&lt;string&gt;

887
获取光标前固定长度的文本。使用promise形式返回结果。参数个数为1,否则抛出异常。
Z
zhouyongfei 已提交
888

889 890 891 892 893
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getForward](#InputClient.getForward)替代
>
> 从 API version 8开始支持。

894
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
895

896
**参数:**
Z
zhouyongfei 已提交
897

W
wz 已提交
898 899 900
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
Z
zhouyongfei 已提交
901

902 903
**返回值:**

W
wz 已提交
904 905 906
| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;string&gt; |  返回文本。                |
Z
refresh  
zhouyongfei 已提交
907

908 909
**示例:**

910
  ```js
911 912 913
  async function InputMethodEngine() {
      var length = 1;
      await TextInputClient.getForward(length).then((text) => {
Z
zhaolinglan 已提交
914
          console.info('getForward promise result---res: ' + text);
915
      }).catch((err) => {
H
Hollokin 已提交
916
          console.error('getForward promise err: ' + JSON.stringify(err));
917 918
      });
  }
Z
zhouyongfei 已提交
919 920
  ```

H
Hollokin 已提交
921
### getBackward<sup>(deprecated)</sup>
Z
zhouyongfei 已提交
922 923 924

getBackward(length:number, callback: AsyncCallback&lt;string&gt;): void

925
获取光标后固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。
Z
zhouyongfei 已提交
926

927 928 929 930 931
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getBackward](#InputClient.getBackward)替代
>
> 从 API version 8开始支持。

932
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
933

934
**参数:**
Z
zhouyongfei 已提交
935

W
wz 已提交
936 937 938 939
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
| callback | AsyncCallback&lt;string&gt; | 是 | 返回文本。 |
Z
zhouyongfei 已提交
940

941 942
**示例:**

943
  ```js
944
  var length = 1;
945
  TextInputClient.getBackward(length, (err, text) => {
Z
zhaolinglan 已提交
946
      if (err === undefined) {
H
Hollokin 已提交
947
          console.error('getBackward callback result---err: ' + JSON.stringify(err));
948 949
          return;
      }
Z
zhaolinglan 已提交
950
      console.log('getBackward callback result---text: ' + text);
Z
zhouyongfei 已提交
951 952 953
  });
  ```

H
Hollokin 已提交
954
### getBackward<sup>(deprecated)</sup>
Z
zhouyongfei 已提交
955 956 957

getBackward(length:number): Promise&lt;string&gt;

958
获取光标后固定长度的文本。使用promise形式返回结果。参数个数为1,否则抛出异常。
Z
zhouyongfei 已提交
959

960 961 962 963 964
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getBackward](#InputClient.getBackward)替代
>
> 从 API version 8开始支持。

965
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
966

967
**参数:**
Z
zhouyongfei 已提交
968

W
wz 已提交
969 970 971
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
Z
zhouyongfei 已提交
972

973 974
**返回值:**

W
wz 已提交
975 976 977
| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;string&gt; |  返回文本。                |
Z
zhouyongfei 已提交
978

979 980
**示例:**

981
  ```js
982 983 984
  async function InputMethodEngine() {
      var length = 1;
      await TextInputClient.getBackward(length).then((text) => {
Z
zhaolinglan 已提交
985
          console.info('getBackward promise result---res: ' + text);
986
      }).catch((err) => {
H
Hollokin 已提交
987
          console.error('getBackward promise err: ' + JSON.stringify(err));
988 989
      });
  }
Z
zhouyongfei 已提交
990 991
  ```

H
Hollokin 已提交
992
### deleteForward<sup>(deprecated)</sup>
Z
zhouyongfei 已提交
993 994 995

deleteForward(length:number, callback: AsyncCallback&lt;boolean&gt;): void

996
删除光标前固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。
Z
zhouyongfei 已提交
997

998 999 1000 1001 1002
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.deleteForward](#InputClient.deleteForward)替代
>
> 从 API version 8开始支持。

1003
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1004

1005
**参数:**
Z
zhouyongfei 已提交
1006

W
wz 已提交
1007 1008 1009 1010
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
| callback | AsyncCallback&lt;boolean&gt; | 是 | 操作成功与否。 |
Z
zhouyongfei 已提交
1011

1012 1013
**示例:**

1014
  ```js
1015
  var length = 1;
1016
  TextInputClient.deleteForward(length, (err, result) => {
Z
zhaolinglan 已提交
1017
      if (err === undefined) {
H
Hollokin 已提交
1018
          console.error('deleteForward callback result---err: ' + JSON.stringify(err));
1019 1020 1021
          return;
      }
      if (result) {
Z
zhaolinglan 已提交
1022
          console.info('Success to deleteForward.(callback) ');
1023
      } else {
Z
zhaolinglan 已提交
1024
          console.error('Failed to deleteForward.(callback) ');
1025
      }
Z
zhouyongfei 已提交
1026 1027
  });
  ```
H
Hollokin 已提交
1028
### deleteForward<sup>(deprecated)</sup>
Z
zhouyongfei 已提交
1029 1030 1031

deleteForward(length:number): Promise&lt;boolean&gt;

1032
删除光标前固定长度的文本。使用promise形式返回结果。参数个数为1,否则抛出异常。
Z
zhouyongfei 已提交
1033

1034 1035 1036 1037 1038
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.deleteForward](#InputClient.deleteForward)替代
>
> 从 API version 8开始支持。

1039
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1040

1041
**参数:**
W
wz 已提交
1042 1043 1044 1045 1046

| 参数名 | 类型   | 必填 | 说明       |
| ------ | ------ | ---- | ---------- |
| length | number | 是   | 文本长度。 |

1047 1048
**返回值:**  

W
wz 已提交
1049 1050 1051
| 类型                   | 说明           |
| ---------------------- | -------------- |
| Promise&lt;boolean&gt; | 操作成功与否。 |
Z
zhouyongfei 已提交
1052

1053 1054
**示例:**

W
wz 已提交
1055
```js
1056 1057 1058 1059
async function InputMethodEngine() {
    var length = 1;
    await TextInputClient.deleteForward(length).then((result) => {
        if (result) {
Z
zhaolinglan 已提交
1060
            console.info('Success to deleteForward.(promise) ');
1061
        } else {
Z
zhaolinglan 已提交
1062
            console.error('Failed to deleteForward.(promise) ');
1063 1064
        }
    }).catch((err) => {
H
Hollokin 已提交
1065
        console.error('deleteForward promise err: ' + JSON.stringify(err));
1066 1067
    });
}
W
wz 已提交
1068 1069
```

H
Hollokin 已提交
1070
### deleteBackward<sup>(deprecated)</sup>
Z
zhouyongfei 已提交
1071 1072 1073

deleteBackward(length:number, callback: AsyncCallback&lt;boolean&gt;): void

1074
删除光标后固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。
Z
zhouyongfei 已提交
1075

1076 1077 1078 1079 1080
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.deleteBackward](#InputClient.deleteBackward)替代
>
> 从 API version 8开始支持。

1081
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1082

1083
  **参数:**
Z
zhouyongfei 已提交
1084

W
wz 已提交
1085 1086 1087 1088
| 参数名   | 类型                         | 必填 | 说明           |
| -------- | ---------------------------- | ---- | -------------- |
| length   | number                       | 是   | 文本长度。     |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 操作成功与否。 |
Z
zhouyongfei 已提交
1089

1090 1091
  **示例:**

W
wz 已提交
1092
```js
1093
var length = 1;
1094
TextInputClient.deleteBackward(length, (err, result) => {
Z
zhaolinglan 已提交
1095
    if (err === undefined) {
H
Hollokin 已提交
1096
        console.error('deleteBackward callback result---err: ' + JSON.stringify(err));
1097 1098 1099
        return;
    }
    if (result) {
Z
zhaolinglan 已提交
1100
        console.info('Success to deleteBackward.(callback) ');
1101
    } else {
Z
zhaolinglan 已提交
1102
        console.error('Failed to deleteBackward.(callback) ');
1103
    }
W
wz 已提交
1104 1105
});
```
Z
zhouyongfei 已提交
1106

H
Hollokin 已提交
1107
### deleteBackward<sup>(deprecated)</sup>
Z
zhouyongfei 已提交
1108 1109

deleteBackward(length:number): Promise&lt;boolean&gt;
Z
refresh  
zhouyongfei 已提交
1110

1111
删除光标后固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。
Z
zhouyongfei 已提交
1112

1113 1114 1115 1116 1117
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.deleteBackward](#InputClient.deleteBackward)替代
>
> 从 API version 8开始支持。

1118
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1119

1120
**参数:**
B
bmeangel 已提交
1121

W
wz 已提交
1122 1123 1124
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
Z
zhouyongfei 已提交
1125

1126 1127
**返回值:** 

W
wz 已提交
1128 1129 1130
| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; |  操作成功与否。                |
Z
zhouyongfei 已提交
1131

1132
**示例:**
Z
zhouyongfei 已提交
1133

W
wz 已提交
1134
```js
1135 1136 1137 1138
async function InputMethodEngine() {
    var length = 1;
    await TextInputClient.deleteBackward(length).then((result) => {
        if (result) {
Z
zhaolinglan 已提交
1139
            console.info('Success to deleteBackward.(promise) ');
1140
        } else {
Z
zhaolinglan 已提交
1141
            console.error('Failed to deleteBackward.(promise) ');
1142 1143
        }
    }).catch((err) => {
H
Hollokin 已提交
1144
        console.error('deleteBackward promise err: ' + JSON.stringify(err));
1145 1146
    });
}
W
wz 已提交
1147
```
H
Hollokin 已提交
1148
### sendKeyFunction<sup>(deprecated)</sup>
Z
zhouyongfei 已提交
1149 1150 1151

sendKeyFunction(action:number, callback: AsyncCallback&lt;boolean&gt;): void

1152
发送功能键。使用callback形式返回结果。参数个数为2,否则抛出异常。
Z
zhouyongfei 已提交
1153

1154 1155 1156 1157 1158
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.sendKeyFunction](#InputClient.sendKeyFunction)替代
>
> 从 API version 8开始支持。

1159
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1160

1161
  **参数:**
Z
zhouyongfei 已提交
1162

W
wz 已提交
1163 1164 1165 1166
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| action | number | 是 | 编辑框属性。 |
| callback | AsyncCallback&lt;boolean&gt; | 是 | 操作成功与否。 |
Z
zhouyongfei 已提交
1167

1168 1169
  **示例:**

W
wz 已提交
1170
```js
1171
TextInputClient.sendKeyFunction(keyFunction, (err, result) => {
Z
zhaolinglan 已提交
1172
    if (err === undefined) {
H
Hollokin 已提交
1173
        console.error('sendKeyFunction callback result---err: ' + JSON.stringify(err));
1174 1175 1176
        return;
    }
    if (result) {
Z
zhaolinglan 已提交
1177
        console.info('Success to sendKeyFunction.(callback) ');
1178
    } else {
Z
zhaolinglan 已提交
1179
        console.error('Failed to sendKeyFunction.(callback) ');
1180
    }
W
wz 已提交
1181 1182
});
```
Z
zhouyongfei 已提交
1183

H
Hollokin 已提交
1184
### sendKeyFunction<sup>(deprecated)</sup>
Z
zhouyongfei 已提交
1185 1186 1187

sendKeyFunction(action:number): Promise&lt;boolean&gt;

1188
发送功能键。使用promise形式返回结果。参数个数为1,否则抛出异常。
Z
zhouyongfei 已提交
1189

1190 1191 1192 1193 1194
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.sendKeyFunction](#InputClient.sendKeyFunction)替代
>
> 从 API version 8开始支持。

1195
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1196

1197 1198
**参数:**

W
wz 已提交
1199 1200 1201
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| action | number | 是 | 编辑框属性。 |
Z
zhouyongfei 已提交
1202

1203 1204
**返回值:**

W
wz 已提交
1205 1206 1207
| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; |  操作成功与否。                |
Z
zhouyongfei 已提交
1208

1209
**示例:**
Z
zhouyongfei 已提交
1210

1211
  ```js
1212 1213 1214
  async function InputMethodEngine() {
      await client.sendKeyFunction(keyFunction).then((result) => {
          if (result) {
Z
zhaolinglan 已提交
1215
              console.info('Success to sendKeyFunction.(promise) ');
1216
          } else {
Z
zhaolinglan 已提交
1217
              console.error('Failed to sendKeyFunction.(promise) ');
1218 1219
          }
      }).catch((err) => {
H
Hollokin 已提交
1220
          console.error('sendKeyFunction promise err:' + JSON.stringify(err));
1221 1222
      });
  }
Z
zhouyongfei 已提交
1223
  ```
W
wz 已提交
1224

H
Hollokin 已提交
1225
### insertText<sup>(deprecated)</sup>
Z
zhouyongfei 已提交
1226 1227 1228

insertText(text:string, callback: AsyncCallback&lt;boolean&gt;): void

1229
插入文本。使用callback形式返回结果。参数个数为2,否则抛出异常。
Z
zhouyongfei 已提交
1230

1231 1232 1233 1234 1235
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.insertText](#InputClient.insertText)替代
>
> 从 API version 8开始支持。

1236
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1237

1238
**参数:**
Z
zhouyongfei 已提交
1239

W
wz 已提交
1240 1241 1242 1243
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| text | string | 是 | 文本。 |
| callback | AsyncCallback&lt;boolean&gt; | 是 | 操作成功与否。 |
Z
zhouyongfei 已提交
1244

1245 1246
**示例:**

W
wz 已提交
1247
```js
1248
TextInputClient.insertText('test', (err, result) => {
Z
zhaolinglan 已提交
1249
    if (err === undefined) {
H
Hollokin 已提交
1250
        console.error('insertText callback result---err: ' + JSON.stringify(err));
1251 1252 1253
        return;
    }
    if (result) {
Z
zhaolinglan 已提交
1254
        console.info('Success to insertText.(callback) ');
1255
    } else {
Z
zhaolinglan 已提交
1256
        console.error('Failed to insertText.(callback) ');
1257
    }
W
wz 已提交
1258 1259
});
```
Z
zhouyongfei 已提交
1260

H
Hollokin 已提交
1261
### insertText<sup>(deprecated)</sup>
Z
zhouyongfei 已提交
1262 1263

insertText(text:string): Promise&lt;boolean&gt;
Z
refresh  
zhouyongfei 已提交
1264

1265
插入文本。使用promise形式返回结果。参数个数为1,否则抛出异常。
Z
zhouyongfei 已提交
1266

1267 1268 1269 1270 1271
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.insertText](#InputClient.insertText)替代
>
> 从 API version 8开始支持。

1272
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1273

1274 1275
**参数:**

W
wz 已提交
1276 1277 1278
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| text | string | 是 | 文本。 |
Z
zhouyongfei 已提交
1279

1280
**返回值:**  
W
wz 已提交
1281 1282 1283 1284

| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; |  操作成功与否。                |
Z
zhouyongfei 已提交
1285

1286
**示例:**
Z
zhouyongfei 已提交
1287

1288
  ```js
1289 1290 1291
  async function InputMethodEngine() {
      await TextInputClient.insertText('test').then((result) => {
          if (result) {
Z
zhaolinglan 已提交
1292
              console.info('Success to insertText.(promise) ');
1293
          } else {
Z
zhaolinglan 已提交
1294
              console.error('Failed to insertText.(promise) ');
1295 1296
          }
      }).catch((err) => {
H
Hollokin 已提交
1297
          console.error('insertText promise err: ' + JSON.stringify(err));
1298 1299
      });
  }
Z
zhouyongfei 已提交
1300
  ```
W
wz 已提交
1301

H
Hollokin 已提交
1302
### getEditorAttribute<sup>(deprecated)</sup>
Z
zhouyongfei 已提交
1303 1304 1305

getEditorAttribute(callback: AsyncCallback&lt;EditorAttribute&gt;): void

1306
获取编辑框属性值。使用callback形式返回结果。参数个数为1,否则抛出异常。
Z
zhouyongfei 已提交
1307

1308 1309 1310 1311 1312
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getEditorAttribute](#InputClient.getEditorAttribute)替代
>
> 从 API version 8开始支持。

1313
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1314

1315 1316
**参数:**

W
wz 已提交
1317 1318 1319
| 参数名                         | 类型                          | 必填                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
| callback | AsyncCallback&lt;[EditorAttribute](#EditorAttribute)&gt; | 是 |  编辑框属性值。                |
Z
zhouyongfei 已提交
1320

1321 1322
**示例:**

1323
  ```js
1324
  TextInputClient.getEditorAttribute((err, editorAttribute) => {
Z
zhaolinglan 已提交
1325
      if (err === undefined) {
H
Hollokin 已提交
1326
          console.error('getEditorAttribute callback result---err: ' + JSON.stringify(err));
1327 1328
          return;
      }
Z
zhaolinglan 已提交
1329 1330
      console.log('editorAttribute.inputPattern(callback): ' + JSON.stringify(editorAttribute.inputPattern));
      console.log('editorAttribute.enterKeyType(callback): ' + JSON.stringify(editorAttribute.enterKeyType));
1331
  });
Z
refresh  
zhouyongfei 已提交
1332
  ```
Z
zhouyongfei 已提交
1333

H
Hollokin 已提交
1334
### getEditorAttribute<sup>(deprecated)</sup>
Z
zhouyongfei 已提交
1335

Z
zhaolinglan 已提交
1336
getEditorAttribute(): Promise&lt;EditorAttribute&gt;
Z
refresh  
zhouyongfei 已提交
1337

1338
获取编辑框属性值。使用promise形式返回结果。参数个数为0,否则抛出异常。
Z
zhouyongfei 已提交
1339

1340 1341 1342 1343 1344
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getEditorAttribute](#InputClient.getEditorAttribute)替代
>
> 从 API version 8开始支持。

1345
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1346

1347 1348
**返回值:**

W
wz 已提交
1349 1350 1351
| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;[EditorAttribute](#EditorAttribute)&gt; |  返回编辑框属性值。           |
Z
zhouyongfei 已提交
1352

1353 1354
**示例:**

1355
   ```js
1356 1357
   async function InputMethodEngine() {
       await TextInputClient.getEditorAttribute().then((editorAttribute) => {
Z
zhaolinglan 已提交
1358 1359
           console.info('editorAttribute.inputPattern(promise): ' + JSON.stringify(editorAttribute.inputPattern));
           console.info('editorAttribute.enterKeyType(promise): ' + JSON.stringify(editorAttribute.enterKeyType));
1360
       }).catch((err) => {
H
Hollokin 已提交
1361
           console.error('getEditorAttribute promise err: ' + JSON.stringify(err));
1362 1363
       });
   }
Z
zhouyongfei 已提交
1364 1365
   ```

1366
## InputClient <a name="InputClient "></a><sup>9+</sup>
Z
zhaolinglan 已提交
1367

1368
下列API示例中都需使用[inputStart](#inputStart)回调获取到InputClient实例,再通过此实例调用对应方法。
Z
zhaolinglan 已提交
1369

1370 1371 1372 1373 1374
### sendKeyFunction<sup>9+</sup>

sendKeyFunction(action:number, callback: AsyncCallback&lt;boolean&gt;): void

发送功能键。使用callback形式返回结果。参数个数为2,否则抛出异常。
Z
zhaolinglan 已提交
1375 1376 1377

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

1378
  **参数:**
Z
zhaolinglan 已提交
1379

1380 1381 1382 1383 1384 1385 1386 1387
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| action | number | 是 | 编辑框属性。 |
| callback | AsyncCallback&lt;boolean&gt; | 是 | 操作成功与否。 |

  **示例:**

```js
H
Hollokin 已提交
1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402
try {
    InputClient.sendKeyFunction(keyFunction, (err, result) => {
        if (err) {
            console.error('sendKeyFunction err: ' + JSON.stringify(err)JSON.stringify(err));
            return;
        }
        if (result) {
            console.info('Success to sendKeyFunction.(callback) ');
        } else {
            console.error('Failed to sendKeyFunction.(callback) ');
        }
    });
} catch (err) {
    console.error('sendKeyFunction err: ' + JSON.stringify(err));
}
1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427
```

### sendKeyFunction<sup>9+</sup>

sendKeyFunction(action:number): Promise&lt;boolean&gt;

发送功能键。使用promise形式返回结果。参数个数为1,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| action | number | 是 | 编辑框属性。 |

**返回值:**

| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; |  操作成功与否。                |

**示例:**

  ```js
H
Hollokin 已提交
1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440
try {
    InputClient.sendKeyFunction(keyFunction).then((result) => {
        if (result) {
            console.info('Success to sendKeyFunction.(callback) ');
        } else {
            console.error('Failed to sendKeyFunction.(callback) ');
        }
    }).catch((err) => {
        console.error('sendKeyFunction promise err:' + JSON.stringify(err));
    });
} catch (err) {
    console.error('sendKeyFunction err: ' + JSON.stringify(err));
}
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461
  ```

### getForward<sup>9+</sup>

getForward(length:number, callback: AsyncCallback&lt;string&gt;): void

获取光标前固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
| callback | AsyncCallback&lt;string&gt; | 是 | 返回文本。 |

**示例:**

  ```js
  var length = 1;
H
Hollokin 已提交
1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472
  try {
      InputClient.getForward(length, (err, text) => {
          if (err) {
              console.error('getForward err: ' + JSON.stringify(err));
              return;
          }
          console.log('getForward callback result: ' + text);
      });
  } catch (err) {
      console.error('getForward err: ' + JSON.stringify(err));
  }
1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497
  ```

### getForward<sup>9+</sup>

getForward(length:number): Promise&lt;string&gt;

获取光标前固定长度的文本。使用promise形式返回结果。参数个数为1,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |

**返回值:**

| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;string&gt; |  返回文本。                |

**示例:**

  ```js
H
Hollokin 已提交
1498
  async function InputMethodAbility() {
1499
      var length = 1;
H
Hollokin 已提交
1500 1501 1502 1503 1504 1505 1506 1507 1508
      try {
          await InputClient.getForward(length).then((text) => {
              console.info('getForward promise resul: ' + text);
          }).catch((err) => {
              console.error('getForward promise err: ' + JSON.stringify(err));
          });
      } catch (err) {
          console.error('getForward promise err: ' + JSON.stringify(err));
      }
1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530
  }
  ```

### getBackward<sup>9+</sup>

getBackward(length:number, callback: AsyncCallback&lt;string&gt;): void

获取光标后固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
| callback | AsyncCallback&lt;string&gt; | 是 | 返回文本。 |

**示例:**

  ```js
  var length = 1;
H
Hollokin 已提交
1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541
  try {
      InputClient.getBackward(length, (err, text) => {
          if (err) {
              console.error('getBackward callback result: ' + JSON.stringify(err));
              return;
          }
          console.log('getBackward callback result---text: ' + text);
      });
  } catch (err) {
      console.error('getBackward callback result: ' + JSON.stringify(err));
  }
1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566
  ```

### getBackward<sup>9+</sup>

getBackward(length:number): Promise&lt;string&gt;

获取光标后固定长度的文本。使用promise形式返回结果。参数个数为1,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |

**返回值:**

| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;string&gt; |  返回文本。                |

**示例:**

  ```js
H
Hollokin 已提交
1567
  async function InputMethodAbility() {
1568
      var length = 1;
H
Hollokin 已提交
1569 1570 1571 1572 1573 1574 1575 1576 1577
      try {
          await InputClient.getBackward(length).then((text) => {
              console.info('getBackward promise result: ' + text);
          }).catch((err) => {
              console.error('getBackward promise err: ' + JSON.stringify(err));
          });
      } catch (err) {
          console.error('getBackward promise err: ' + JSON.stringify(err));
      }
1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598
  }
  ```

### deleteForward<sup>9+</sup>

deleteForward(length:number, callback: AsyncCallback&lt;boolean&gt;): void

删除光标前固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
| callback | AsyncCallback&lt;boolean&gt; | 是 | 操作成功与否。 |

**示例:**

  ```js
H
Hollokin 已提交
1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614
var length = 1;
try {
    InputClient.deleteForward(length, (err, result) => {
        if (err) {
            console.error('deleteForward callback result: ' + JSON.stringify(err));
            return;
        }
        if (result) {
            console.info('Success to deleteForward.(callback) ');
        } else {
            console.error('Failed to deleteForward.(callback) ');
        }
    });
} catch (err) {
    console.error('deleteForward callback result: ' + JSON.stringify(err));
}
1615
  ```
H
Hollokin 已提交
1616

1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639
### deleteForward<sup>9+</sup>

deleteForward(length:number): Promise&lt;boolean&gt;

删除光标前固定长度的文本。使用promise形式返回结果。参数个数为1,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型   | 必填 | 说明       |
| ------ | ------ | ---- | ---------- |
| length | number | 是   | 文本长度。 |

**返回值:**  

| 类型                   | 说明           |
| ---------------------- | -------------- |
| Promise&lt;boolean&gt; | 操作成功与否。 |

**示例:**

```js
H
Hollokin 已提交
1640
async function InputMethodAbility() {
1641
    var length = 1;
H
Hollokin 已提交
1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654
    try {
        await InputClient.deleteForward(length).then((result) => {
            if (result) {
                console.info('Success to deleteForward.(promise) ');
            } else {
                console.error('Failed to deleteForward.(promise) ');
            }
        }).catch((err) => {
            console.error('deleteForward promise err: ' + JSON.stringify(err));
        });
    } catch (err) {
        console.error('deleteForward promise err: ' + JSON.stringify(err));
    }
1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676
}
```

### deleteBackward<sup>9+</sup>

deleteBackward(length:number, callback: AsyncCallback&lt;boolean&gt;): void

删除光标后固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

  **参数:**

| 参数名   | 类型                         | 必填 | 说明           |
| -------- | ---------------------------- | ---- | -------------- |
| length   | number                       | 是   | 文本长度。     |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 操作成功与否。 |

  **示例:**

```js
var length = 1;
1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691
try {
    InputClient.deleteBackward(length, (err, result) => {
        if (err) {
            console.error('deleteBackward err: ' + JSON.stringify(err));
            return;
        }
        if (result) {
            console.info('Success to deleteBackward.(callback) ');
        } else {
            console.error('Failed to deleteBackward.(callback) ');
        }
    });
} catch (err) {
    console.error('deleteBackward err: ' + JSON.stringify(err));
}
1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725
```

### deleteBackward<sup>9+</sup>

deleteBackward(length:number): Promise&lt;boolean&gt;

删除光标后固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |

**返回值:** 

| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; |  操作成功与否。                |

**示例:**

```js
async function InputMethodAbility() {
    var length = 1;
    await InputClient.deleteBackward(length).then((result) => {
        if (result) {
            console.info('Success to deleteBackward.(promise) ');
        } else {
            console.error('Failed to deleteBackward.(promise) ');
        }
    }).catch((err) => {
H
Hollokin 已提交
1726
        console.error('deleteBackward promise err: ' + JSON.stringify(err));
1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748
    });
}
```

### insertText<sup>9+</sup>

insertText(text:string, callback: AsyncCallback&lt;boolean&gt;): void

插入文本。使用callback形式返回结果。参数个数为2,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| text | string | 是 | 文本。 |
| callback | AsyncCallback&lt;boolean&gt; | 是 | 操作成功与否。 |

**示例:**

```js
H
Hollokin 已提交
1749 1750 1751
InputClient.insertText('test', (err, result) => {
    if (err) {
        console.error('insertText err: ' + JSON.stringify(err));
1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784
        return;
    }
    if (result) {
        console.info('Success to insertText.(callback) ');
    } else {
        console.error('Failed to insertText.(callback) ');
    }
});
```

### insertText<sup>9+</sup>

insertText(text:string): Promise&lt;boolean&gt;

插入文本。使用promise形式返回结果。参数个数为1,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| text | string | 是 | 文本。 |

**返回值:**  

| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; |  操作成功与否。                |

**示例:**

  ```js
H
Hollokin 已提交
1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798
  async function InputMethodAbility() {
      try {
          await InputClient.insertText('test').then((result) => {
              if (result) {
                  console.info('Success to insertText.(promise) ');
              } else {
                  console.error('Failed to insertText.(promise) ');
              }
          }).catch((err) => {
              console.error('insertText promise err: ' + JSON.stringify(err));
          });
      } catch (e) {
          console.error('insertText promise err: ' + JSON.stringify(err));
      }
1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818
  }
  ```

### getEditorAttribute<sup>9+</sup>

getEditorAttribute(callback: AsyncCallback&lt;EditorAttribute&gt;): void

获取编辑框属性值。使用callback形式返回结果。参数个数为1,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名                         | 类型                          | 必填                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
| callback | AsyncCallback&lt;[EditorAttribute](#EditorAttribute)&gt; | 是 |  编辑框属性值。                |

**示例:**

  ```js
H
Hollokin 已提交
1819 1820 1821
  InputClient.getEditorAttribute((err, editorAttribute) => {
      if (err) {
          console.error('getEditorAttribute callback result---err: ' + JSON.stringify(err));
1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846
          return;
      }
      console.log('editorAttribute.inputPattern(callback): ' + JSON.stringify(editorAttribute.inputPattern));
      console.log('editorAttribute.enterKeyType(callback): ' + JSON.stringify(editorAttribute.enterKeyType));
  });
  ```

### getEditorAttribute<sup>9+</sup>

getEditorAttribute(): Promise&lt;EditorAttribute&gt;

获取编辑框属性值。使用promise形式返回结果。参数个数为0,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**返回值:**

| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;[EditorAttribute](#EditorAttribute)&gt; |  返回编辑框属性值。           |

**示例:**

   ```js
   async function InputMethodEngine() {
H
Hollokin 已提交
1847
       await InputClient.getEditorAttribute().then((editorAttribute) => {
1848 1849 1850
           console.info('editorAttribute.inputPattern(promise): ' + JSON.stringify(editorAttribute.inputPattern));
           console.info('editorAttribute.enterKeyType(promise): ' + JSON.stringify(editorAttribute.enterKeyType));
       }).catch((err) => {
H
Hollokin 已提交
1851
           console.error('getEditorAttribute promise err: ' + JSON.stringify(err));
1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867
       });
   }
   ```

### moveCursor<sup>9+</sup>

moveCursor(direction: number, callback: AsyncCallback&lt;void&gt;): void

移动光标。使用callback形式返回结果。参数个数为1,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名    | 类型                      | 必填 | 说明           |
| --------- | ------------------------- | ---- | -------------- |
Z
zhaolinglan 已提交
1868 1869 1870 1871 1872 1873
| direction | number                    | 是   | 光标移动方向。 |
| callback  | AsyncCallback&lt;void&gt; | 是   | 回调函数。     |

**示例:**

```js
H
Hollokin 已提交
1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884
try {
    InputClient.moveCursor(inputMethodAbility.CURSOR_xxx, (err) => {
        if (err) {
            console.error('moveCursor err: ' + JSON.stringify(err));
            return;
        }
        console.info('moveCursor success');
    });
} catch (err) {
    console.error('moveCursor err: ' + JSON.stringify(err));
}
Z
zhaolinglan 已提交
1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898
```

### moveCursor<sup>9+</sup>

moveCursor(direction: number): Promise&lt;void&gt;

移动光标。使用promise形式返回结果。参数个数为1,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名    | 类型   | 必填 | 说明           |
| --------- | ------ | ---- | -------------- |
Z
zhaolinglan 已提交
1899
| direction | number | 是   | 光标移动方向。 |
Z
zhaolinglan 已提交
1900 1901 1902 1903 1904 1905 1906 1907 1908 1909

**返回值:**  

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**示例:**

  ```js
1910
async function InputMethodAbility() {
H
Hollokin 已提交
1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923
    try {
        await InputClient.moveCursor(inputMethodEngine.CURSOR_xxx).then((err) => {
            if (err) {
                console.log('moveCursor err: ' + JSON.stringify(err));
                return;
            }
            console.log('moveCursor success');
        }).catch((err) => {
            console.error('moveCursor success err: ' + JSON.stringify(err));
        });
    } catch (e) {
        console.log('moveCursor err: ' + JSON.stringify(err));
    }
Z
zhaolinglan 已提交
1924 1925 1926
}
  ```

Z
zhouyongfei 已提交
1927 1928 1929 1930
## EditorAttribute<a name="EditorAttribute"></a>

编辑框属性值。

1931
**系统能力**:以下各项对应的系统能力均为SystemCapability.MiscServices.InputMethodFramework
Z
刷新  
zhouyongfei 已提交
1932 1933 1934 1935 1936

| 名称         | 参数类型 | 可读 | 可写 | 说明               |
| ------------ | -------- | ---- | ---- | ------------------ |
| enterKeyType | number   | 是   | 否   | 编辑框的功能属性。 |
| inputPattern | number   | 是   | 否   | 编辑框的文本属性。 |
Z
zhouyongfei 已提交
1937 1938 1939

## KeyEvent<a name="KeyEvent"></a>

Z
refresh  
zhouyongfei 已提交
1940
按键属性值。
Z
zhouyongfei 已提交
1941

1942
**系统能力**:以下各项对应的系统能力均为SystemCapability.MiscServices.InputMethodFramework
Z
刷新  
zhouyongfei 已提交
1943 1944 1945 1946 1947

| 名称      | 参数类型 | 可读 | 可写 | 说明         |
| --------- | -------- | ---- | ---- | ------------ |
| keyCode   | number   | 是   | 否   | 按键的键值。 |
| keyAction | number   | 是   | 否   | 按键的状态。 |
Z
zhouyongfei 已提交
1948