js-apis-inputmethod-extension-context.md 2.1 KB
Newer Older
Z
zhaolinglan 已提交
1 2 3 4 5 6 7 8
# InputMethodExtensionContext

InputMethodExtensionContext模块是InputMethodExtensionAbility的上下文环境,继承自ExtensionContext。

InputMethodExtensionContext模块提供InputMethodExtensionAbility具有的能力和接口,包括启动、停止、绑定、解绑Ability。

> **说明:**
> 
H
Hollokin 已提交
9
> - 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。  
Z
zhaolinglan 已提交
10

Z
zhaolinglan 已提交
11 12 13 14 15 16
## 导入模块

```
import InputMethodExtensionContext from '@ohos.inputmethodextensioncontext';
```

Z
zhaolinglan 已提交
17 18 19 20
## 使用说明

在使用InputMethodExtensionContext的功能前,需要通过InputMethodExtensionAbility子类实例获取。

H
Hollokin 已提交
21
```ts
H
Hollokin 已提交
22 23 24 25 26 27
import InputMethodExtensionAbility from '@ohos.inputmethodextensionability';
class MainAbility extends InputMethodExtensionAbility {
    onCreate() {
        let context = this.context;
    }
}
Z
zhaolinglan 已提交
28 29
```

H
Hollokin 已提交
30 31
## InputMethodExtensionContext.destroy<sup>9+</sup>

H
Hollokin 已提交
32
destroy(callback: AsyncCallback\<void>): void
H
Hollokin 已提交
33 34 35 36 37 38 39

停止输入法应用自身。使用callback异步回调。

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

**参数:**

H
Hollokin 已提交
40 41 42
| 参数名   | 类型                 | 必填 | 说明                                                         |
| -------- | -------------------- | ---- | ------------------------------------------------------------ |
| callback | AsyncCallback\<void> | 是   | 回调函数。当启动Ability成功,err为undefined;否则为错误对象。 |
H
Hollokin 已提交
43 44 45 46 47 48 49 50 51 52 53

**示例:**

```ts
this.context.destroy((err) => {
    console.log('destroy result:' + JSON.stringify(err));
});
```

## InputMethodExtensionContext.destroy<sup>9+</sup>

H
Hollokin 已提交
54
destroy(): Promise<void&gt;;
H
Hollokin 已提交
55 56 57 58 59 60 61 62 63

停止输入法应用自身。通过Promise返回结果。

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

**返回值:**

| 类型 | 说明 |
| -------- | -------- |
H
Hollokin 已提交
64
| Promise<void&gt; | Promise对象,无返回结果的Promise对象。 |
H
Hollokin 已提交
65 66 67 68 69 70 71 72 73 74

**示例:**

```ts
this.context.destroy().then((data) => {
    console.log('success:' + JSON.stringify(data));
}).catch((error) => {
    console.log('failed:' + JSON.stringify(error));
});
```