Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
4f001db3
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
4f001db3
编写于
7月 08, 2022
作者:
M
ma-shaoyin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Signed-off-by: ma-shaoyin <mashaoyin1@huawei.com>
Changes to be committed:
上级
c91df51a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
45 addition
and
43 deletion
+45
-43
zh-cn/application-dev/reference/apis/js-apis-inputmethod.md
zh-cn/application-dev/reference/apis/js-apis-inputmethod.md
+10
-10
zh-cn/application-dev/reference/apis/js-apis-inputmethodengine.md
...plication-dev/reference/apis/js-apis-inputmethodengine.md
+35
-33
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-inputmethod.md
浏览文件 @
4f001db3
...
...
@@ -16,7 +16,7 @@ import inputMethod from '@ohos.inputMethod';
常量值。
**系统能力**
:以下各项对应的系统能力均为SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
:以下各项对应的系统能力均为SystemCapability.Misc
S
ervices.InputMethodFramework
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
...
...
@@ -27,7 +27,7 @@ import inputMethod from '@ohos.inputMethod';
输入法应用属性。
**系统能力**
:以下各项对应的系统能力均为SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
:以下各项对应的系统能力均为SystemCapability.Misc
S
ervices.InputMethodFramework
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
...
...
@@ -40,7 +40,7 @@ getInputMethodController(): InputMethodController
获取客户端实例
[
InputMethodController
](
#InputMethodController
)
。
**系统能力**
:SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
:SystemCapability.Misc
S
ervices.InputMethodFramework
**返回值:**
...
...
@@ -60,7 +60,7 @@ getInputMethodSetting(): InputMethodSetting
获取客户端设置实例
[
InputMethodSetting
](
#InputMethodSetting
)
。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**返回值:**
...
...
@@ -85,7 +85,7 @@ stopInput(callback: AsyncCallback<boolean>): void
隐藏输入法。
**系统能力**
:SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
:SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -107,7 +107,7 @@ stopInput(): Promise<boolean>
隐藏输入法。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**返回值:**
...
...
@@ -133,7 +133,7 @@ listInputMethod(callback: AsyncCallback<Array<InputMethodProperty>>)
查询已安装的输入法列表。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
...
...
@@ -157,7 +157,7 @@ listInputMethod(): Array<InputMethodProperty>
查询已安装的输入法列表。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**返回值:**
| 类型 | 说明 |
...
...
@@ -180,7 +180,7 @@ displayOptionalInputMethod(callback: AsyncCallback<void>): void
显示输入法选择对话框。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -202,7 +202,7 @@ displayOptionalInputMethod(callback: AsyncCallback<void>): void
显示输入法选择对话框。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**返回值:**
...
...
zh-cn/application-dev/reference/apis/js-apis-inputmethodengine.md
浏览文件 @
4f001db3
# 输入法服务
本模块的作用是拉通应用和输入法,保证应用可以通过输入法进行文本输入,以及应用与输入法服务的绑定、应用对输入法的显示和隐藏请求、监听输入法当前的状态等等。
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
...
...
@@ -13,7 +15,7 @@ import inputMethodEngine from '@ohos.inputMethodEngine';
常量值。
**系统能力**
:以下各项对应的系统能力均为SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
:以下各项对应的系统能力均为SystemCapability.Misc
S
ervices.InputMethodFramework
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
...
...
@@ -50,7 +52,7 @@ getInputMethodEngine(): InputMethodEngine
获取服务端实例。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**返回值:**
...
...
@@ -70,7 +72,7 @@ createKeyboardDelegate(): KeyboardDelegate
获取客户端监听实例。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**返回值:**
...
...
@@ -94,7 +96,7 @@ on(type: 'inputStart', callback: (kbController: KeyboardController, textInputCli
订阅输入法绑定成功事件,使用callback回调返回输入法操作相关实例。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -118,7 +120,7 @@ off(type: 'inputStart', callback?: (kbController: KeyboardController, textInputC
取消订阅输入法绑定成功事件。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -141,7 +143,7 @@ on(type: 'keyboardShow'|'keyboardHide', callback: () => void): void
订阅输入法事件。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -164,7 +166,7 @@ off(type: 'keyboardShow'|'keyboardHide', callback?: () => void): void
取消订阅输入法事件。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -190,7 +192,7 @@ on(type: 'keyDown'|'keyUp', callback: (event: KeyEvent) => boolean): void
订阅硬键盘事件,使用callback回调返回按键信息。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -215,7 +217,7 @@ off(type: 'keyDown'|'keyUp', callback?: (event: KeyEvent) => boolean): void
取消订阅硬键盘事件。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -236,7 +238,7 @@ on(type: 'cursorContextChange', callback: (x: number, y:number, height:number) =
订阅光标变化事件,使用callback回调返回光标信息。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -261,7 +263,7 @@ off(type: 'cursorContextChange', callback?: (x: number, y:number, height:number)
取消订阅光标变化事件。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -282,7 +284,7 @@ on(type: 'selectionChange', callback: (oldBegin: number, oldEnd: number, newBegi
订阅文本选择变化事件,使用callback回调返回文本选择信息。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -305,7 +307,7 @@ off(type: 'selectionChange', callback?: (oldBegin: number, oldEnd: number, newBe
取消订阅文本选择变化事件。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -327,7 +329,7 @@ on(type: 'textChange', callback: (text: string) => void): void
订阅文本变化事件,使用callback回调返回当前文本内容。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -350,7 +352,7 @@ off(type: 'textChange', callback?: (text: string) => void): void
取消订阅文本变化事件。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -375,7 +377,7 @@ hideKeyboard(callback: AsyncCallback<void>): void
隐藏输入法。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -397,7 +399,7 @@ hideKeyboard(): Promise<void>
隐藏输入法。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**返回值:**
...
...
@@ -421,7 +423,7 @@ getForward(length:number, callback: AsyncCallback<string>): void
获取光标前固定长度的文本。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -444,7 +446,7 @@ getForward(length:number): Promise<string>
获取光标前固定长度的文本。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -471,7 +473,7 @@ getBackward(length:number, callback: AsyncCallback<string>): void
获取光标后固定长度的文本。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -494,7 +496,7 @@ getBackward(length:number): Promise<string>
获取光标后固定长度的文本。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -521,7 +523,7 @@ deleteForward(length:number, callback: AsyncCallback<boolean>): void
删除光标前固定长度的文本。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -543,7 +545,7 @@ deleteForward(length:number): Promise<boolean>
删除光标前固定长度的文本。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -570,7 +572,7 @@ deleteBackward(length:number, callback: AsyncCallback<boolean>): void
删除光标后固定长度的文本。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -593,7 +595,7 @@ deleteBackward(length:number): Promise<boolean>
删除光标后固定长度的文本。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
...
...
@@ -618,7 +620,7 @@ sendKeyFunction(action:number, callback: AsyncCallback<boolean>): void
发送功能键。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -641,7 +643,7 @@ sendKeyFunction(action:number): Promise<boolean>
发送功能键。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -668,7 +670,7 @@ insertText(text:string, callback: AsyncCallback<boolean>): void
插入文本。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -691,7 +693,7 @@ insertText(text:string): Promise<boolean>
插入文本。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -718,7 +720,7 @@ getEditorAttribute(callback: AsyncCallback<EditorAttribute>): void
获取编辑框属性值。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**参数:**
...
...
@@ -739,7 +741,7 @@ getEditorAttribute(): EditorAttribute
获取编辑框属性值。
**系统能力**
: SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
: SystemCapability.Misc
S
ervices.InputMethodFramework
**返回值:**
...
...
@@ -757,7 +759,7 @@ getEditorAttribute(): EditorAttribute
编辑框属性值。
**系统能力**
:以下各项对应的系统能力均为SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
:以下各项对应的系统能力均为SystemCapability.Misc
S
ervices.InputMethodFramework
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| ------------ | -------- | ---- | ---- | ------------------ |
...
...
@@ -768,7 +770,7 @@ getEditorAttribute(): EditorAttribute
按键属性值。
**系统能力**
:以下各项对应的系统能力均为SystemCapability.Misc
s
ervices.InputMethodFramework
**系统能力**
:以下各项对应的系统能力均为SystemCapability.Misc
S
ervices.InputMethodFramework
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| --------- | -------- | ---- | ---- | ------------ |
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录