Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
a92a19c5
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看板
提交
a92a19c5
编写于
7月 10, 2023
作者:
H
Hollokin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
原子化绑定编辑框信息需求新增接口对应资料
Signed-off-by:
N
Hollokin
<
taoyuxin2@huawei.com
>
上级
2989b19d
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
55 addition
and
8 deletion
+55
-8
zh-cn/application-dev/reference/apis/js-apis-inputmethod.md
zh-cn/application-dev/reference/apis/js-apis-inputmethod.md
+5
-2
zh-cn/application-dev/reference/apis/js-apis-inputmethodengine.md
...plication-dev/reference/apis/js-apis-inputmethodengine.md
+50
-6
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-inputmethod.md
浏览文件 @
a92a19c5
...
...
@@ -596,9 +596,12 @@ let inputMethodSetting = inputMethod.getInputMethodSetting();
**系统能力:**
SystemCapability.MiscServices.InputMethodFramework
| 名称 | 类型 |
可读 | 可写
| 说明 |
| 名称 | 类型 |
只读 | 必填
| 说明 |
| -------- | -------- | -------- | -------- | -------- |
| inputAttribute
<sup>
10+
</sup>
|
[
InputAttribute
](
#inputattribute10
)
| 是 | 是 | 编辑框属性。|
| inputAttribute
<sup>
10+
</sup>
|
[
InputAttribute
](
#inputattribute10
)
| 否 | 是 | 编辑框属性。|
| cursorInfo
<sup>
10+
</sup>
|
[
CursorInfo
](
#cursorinfo10
)
| 否 | 否 | 光标信息。|
| selection
<sup>
10+
</sup>
|
[
Range
](
#range10
)
| 否 | 否 | 文本选区范围。|
| windowId
<sup>
10+
</sup>
| number | 否 | 否 | 编辑控件所在的窗口Id。|
## CursorInfo<sup>10+</sup>
...
...
zh-cn/application-dev/reference/apis/js-apis-inputmethodengine.md
浏览文件 @
a92a19c5
...
...
@@ -789,7 +789,7 @@ on(type: 'cursorContextChange', callback: (x: number, y:number, height:number) =
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ---- | ---- | ----- |
| type | string | 是 | 光标变化事件。
<br/>
-
type为
’cursorContextChange‘
时,表示订阅光标变化事件。 |
| type | string | 是 | 光标变化事件。
<br/>
-
type为
‘cursorContextChange’
时,表示订阅光标变化事件。 |
| callback | (x: number, y: number, height: number) => void | 是 | 回调函数,返回光标信息。
<br/>
-
x为光标上端的的x坐标值。
<br/>
-
y为光标上端的y坐标值。
<br/>
-
height为光标的高度值。 |
**示例:**
...
...
@@ -814,7 +814,7 @@ off(type: 'cursorContextChange', callback?: (x: number, y: number, height: numbe
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ---- | ---- | ------ |
| type | string | 是 | 光标变化事件。
<br/>
-
type为
’cursorContextChange‘
时,表示光标变化。 |
| type | string | 是 | 光标变化事件。
<br/>
-
type为
‘cursorContextChange’
时,表示光标变化。 |
| callback | (x: number, y:number, height:number) => void | 否 | 回调函数,返回光标信息。
<br/>
-
x为光标上端的的x坐标值。
<br/>
-
y为光标上端的y坐标值。
<br/>
-
height为光标的高度值。
<br/>
|
...
...
@@ -837,7 +837,7 @@ on(type: 'selectionChange', callback: (oldBegin: number, oldEnd: number, newBegi
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ----- | ---- | ---- |
| type | string | 是 | 文本选择变化事件。
<br/>
-
type为
’selectionChange‘
时,表示选择文本变化。 |
| type | string | 是 | 文本选择变化事件。
<br/>
-
type为
‘selectionChange’
时,表示选择文本变化。 |
| callback | (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void | 是 | 回调函数,返回文本选择信息。
<br/>
-
oldBegin为变化之前被选中文本的起始下标。
<br/>
-
oldEnd为变化之前被选中文本的终止下标。
<br/>
-
newBegin为变化之后被选中文本的起始下标。
<br/>
-
newEnd为变化之后被选中文本的终止下标。 |
**示例:**
...
...
@@ -863,7 +863,7 @@ off(type: 'selectionChange', callback?: (oldBegin: number, oldEnd: number, newBe
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------- | ---- | ------- |
| type | string | 是 | 文本选择变化事件。
<br/>
-
type为
’selectionChange‘
时,表示选择文本变化。 |
| type | string | 是 | 文本选择变化事件。
<br/>
-
type为
‘selectionChange’
时,表示选择文本变化。 |
| callback | (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void | 否 | 回调函数,返回文本选择信息。
<br/>
-
oldBegin为变化之前被选中文本的起始下标。
<br/>
-
oldEnd为变化之前被选中文本的终止下标。
<br/>
-
newBegin为变化之后被选中文本的起始下标。
<br/>
-
newEnd为变化之后被选中文本的终止下标。
<br/>
|
**示例:**
...
...
@@ -887,7 +887,7 @@ on(type: 'textChange', callback: (text: string) => void): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type | string | 是 | 文本变化事件。
<br/>
-
type为
’textChange‘
时,表示订阅文本变化事件。 |
| type | string | 是 | 文本变化事件。
<br/>
-
type为
‘textChange’
时,表示订阅文本变化事件。 |
| callback | (text: string) => void | 是 | 回调函数,返回订阅的文本内容。|
**示例:**
...
...
@@ -910,7 +910,7 @@ off(type: 'textChange', callback?: (text: string) => void): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type | string | 是 | 文本变化事件。
<br/>
-
type为
’textChange‘
时,表示取消订阅文本变化事件。 |
| type | string | 是 | 文本变化事件。
<br/>
-
type为
‘textChange’
时,表示取消订阅文本变化事件。 |
| callback | (text: string) => void | 否 | 回调函数,返回取消订阅的文本内容。 |
**示例:**
...
...
@@ -921,6 +921,50 @@ inputMethodEngine.getKeyboardDelegate().off('textChange', (text) => {
});
```
### on('editorAttributeChanged')<sup>10+</sup>
on(type: 'editorAttributeChanged', callback: (attr: EditorAttribute) => void): void
订阅编辑框属性变化事件。使用callback异步回调。
**系统能力:**
SystemCapability.MiscServices.InputMethodFramework
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type | string | 是 | 文本变化事件。
<br/>
-
type为‘editorAttributeChanged’时,表示订阅编辑框属性变化事件。 |
| callback | (attr: EditorAttribute) => void | 是 | 用于接受编辑框属性变化的回调函数。|
**示例:**
```
js
inputMethodEngine
.
getKeyboardDelegate
().
on
(
'
editorAttributeChanged
'
,
(
attr
)
=>
{
console
.
log
(
`Succeeded in receiving attribute of editor, inputPattern =
${
attr
.
inputPattern
}
, enterKeyType =
${
attr
.
enterKeyType
}
`
);
});
```
### off('editorAttributeChanged')<sup>10+</sup>
off(type: 'editorAttributeChanged', callback?: (attr: EditorAttribute) => void): void
取消订阅编辑框属性变化事件。
**系统能力:**
SystemCapability.MiscServices.InputMethodFramework
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type | string | 是 | 文本变化事件。
<br/>
-
type为‘editorAttributeChanged’时,表示取消订阅编辑框属性变化事件。 |
| callback | (attr: EditorAttribute) => void | 否 | 所要取消订阅的回调处理函数,和on接口参数对应。 |
**示例:**
```
js
inputMethodEngine
.
getKeyboardDelegate
().
off
(
'
editorAttributeChanged
'
);
```
## Panel<sup>10+</sup>
下列API示例中都需使用
[
createPanel
](
#createpanel10
)
回调获取到Panel实例,再通过此实例调用对应方法。
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录