Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
66c454b8
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看板
未验证
提交
66c454b8
编写于
11月 18, 2022
作者:
O
openharmony_ci
提交者:
Gitee
11月 18, 2022
浏览文件
操作
浏览文件
下载
差异文件
!11588 多模资料整改
Merge pull request !11588 from mayunteng/master
上级
4cde01bf
1e0edb3f
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
23 addition
and
17 deletion
+23
-17
zh-cn/application-dev/reference/apis/js-apis-cooperate.md
zh-cn/application-dev/reference/apis/js-apis-cooperate.md
+13
-7
zh-cn/application-dev/reference/apis/js-apis-inputdevice.md
zh-cn/application-dev/reference/apis/js-apis-inputdevice.md
+7
-7
zh-cn/application-dev/reference/apis/js-apis-inputeventclient.md
...pplication-dev/reference/apis/js-apis-inputeventclient.md
+2
-2
zh-cn/application-dev/reference/apis/js-apis-inputmonitor.md
zh-cn/application-dev/reference/apis/js-apis-inputmonitor.md
+1
-1
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-cooperate.md
浏览文件 @
66c454b8
...
...
@@ -112,6 +112,8 @@ start(sinkDeviceDescriptor: string, srcInputDeviceId: number, callback: AsyncCal
**示例**
:
```
js
let
sinkDeviceDescriptor
=
"
descriptor
"
;
let
srcInputDeviceId
=
0
;
try
{
inputDeviceCooperate
.
start
(
sinkDeviceDescriptor
,
srcInputDeviceId
,
(
error
)
=>
{
if
(
error
)
{
...
...
@@ -160,6 +162,8 @@ start(sinkDeviceDescriptor: string, srcInputDeviceId: number): Promise\<void>
**示例**
:
```
js
let
sinkDeviceDescriptor
=
"
descriptor
"
;
let
srcInputDeviceId
=
0
;
try
{
inputDeviceCooperate
.
start
(
sinkDeviceDescriptor
,
srcInputDeviceId
).
then
(()
=>
{
console
.
log
(
`Start Keyboard mouse crossing success.`
);
...
...
@@ -215,7 +219,7 @@ stop(): Promise\<void>
| 参数名 | 说明 |
| -------- | ---------------------------- |
| Promise
\<
void> | Promise对象,异步返回停止键鼠穿越结果。 |
| Promise
\<
void> | Promise对象,异步返回停止键鼠穿越结果。 |
**示例**
:
...
...
@@ -249,6 +253,7 @@ getState(deviceDescriptor: string, callback: AsyncCallback<{ state: boolean }>):
**示例**
:
```
js
let
deviceDescriptor
=
"
descriptor
"
;
try
{
inputDeviceCooperate
.
getState
(
deviceDescriptor
,
(
error
,
data
)
=>
{
if
(
error
)
{
...
...
@@ -289,6 +294,7 @@ getState(deviceDescriptor: string): Promise<{ state: boolean }>
**示例**
:
```
js
let
deviceDescriptor
=
"
descriptor
"
;
try
{
inputDeviceCooperate
.
getState
(
deviceDescriptor
).
then
((
data
)
=>
{
console
.
log
(
`Get the status success, data:
${
JSON
.
stringify
(
data
)}
`
);
...
...
@@ -324,7 +330,7 @@ try {
inputDeviceCooperate
.
on
(
'
cooperation
'
,
(
data
)
=>
{
console
.
log
(
`Keyboard mouse crossing event:
${
JSON
.
stringify
(
data
)}
`
);
});
}
catch
(
err
)
{
}
catch
(
err
or
)
{
console
.
log
(
`Register failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
}
```
...
...
@@ -350,25 +356,25 @@ off(type: 'cooperation', callback?: AsyncCallback\<void>): void
```
js
// 取消注册单个回调函数
callback
:
function
(
event
)
{
function
callback
(
event
)
{
console
.
log
(
`Keyboard mouse crossing event:
${
JSON
.
stringify
(
event
)}
`
);
return
false
;
},
try
{
inputDeviceCooperate
.
on
(
'
cooperation
'
,
this
.
callback
);
inputDeviceCooperate
.
off
(
"
cooperation
"
,
this
.
callback
);
inputDeviceCooperate
.
on
(
'
cooperation
'
,
callback
);
inputDeviceCooperate
.
off
(
"
cooperation
"
,
callback
);
}
catch
(
error
)
{
console
.
log
(
`Execute failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
}
```
```
js
// 取消注册所有回调函数
callback
:
function
(
event
)
{
function
callback
(
event
)
{
console
.
log
(
`Keyboard mouse crossing event:
${
JSON
.
stringify
(
event
)}
`
);
return
false
;
},
try
{
inputDeviceCooperate
.
on
(
'
cooperation
'
,
this
.
callback
);
inputDeviceCooperate
.
on
(
'
cooperation
'
,
callback
);
inputDeviceCooperate
.
off
(
"
cooperation
"
);
}
catch
(
error
)
{
console
.
log
(
`Execute failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
...
...
zh-cn/application-dev/reference/apis/js-apis-inputdevice.md
浏览文件 @
66c454b8
...
...
@@ -334,19 +334,19 @@ inputDevice.getDeviceInfo(1).then((deviceData) => {
## inputDevice.supportKeys<sup>9+</sup>
supportKeys(deviceId: number, keys: Array
<
KeyCode
>
, callback:
Callback
<
Array
<
boolean
>>
): void
supportKeys(deviceId: number, keys: Array
<
KeyCode
>
, callback:
AsyncCallback
<
Array
<
boolean
>>
): void
获取输入设备是否支持指定的键码值,使用Callback异步方式返回结果。
获取输入设备是否支持指定的键码值,使用
Async
Callback异步方式返回结果。
**系统能力**
:SystemCapability.MultimodalInput.Input.InputDevice
**参数**
:
| 参数 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------ | ---- | ------------------------------------------------------ |
| deviceId | number | 是 | 输入设备id,同一个物理设备反复插拔,设备id会发生变化。 |
| keys | Array
<
KeyCode
>
| 是 | 需要查询的键码值,最多支持5个按键查询。 |
| callback | Callback
<
Array
<
boolean
>>
| 是 | 回调函数,异步返回查询结果。 |
| 参数 | 类型
| 必填 | 说明 |
| -------- | ------------------------------------
-----
| ---- | ------------------------------------------------------ |
| deviceId | number
| 是 | 输入设备id,同一个物理设备反复插拔,设备id会发生变化。 |
| keys | Array
<
KeyCode
>
| 是 | 需要查询的键码值,最多支持5个按键查询。 |
| callback |
Async
Callback
<
Array
<
boolean
>>
| 是 | 回调函数,异步返回查询结果。 |
**示例**
:
...
...
zh-cn/application-dev/reference/apis/js-apis-inputeventclient.md
浏览文件 @
66c454b8
...
...
@@ -41,7 +41,7 @@ try {
keyDownDuration
:
0
,
isIntercepted
:
false
}
inputEventClient
.
inject
Key
Event
({
KeyEvent
:
backKeyDown
});
inputEventClient
.
injectEvent
({
KeyEvent
:
backKeyDown
});
let
backKeyUp
=
{
isPressed
:
false
,
...
...
@@ -49,7 +49,7 @@ try {
keyDownDuration
:
0
,
isIntercepted
:
false
};
inputEventClient
.
inject
Key
Event
({
KeyEvent
:
backKeyUp
});
inputEventClient
.
injectEvent
({
KeyEvent
:
backKeyUp
});
}
catch
(
error
)
{
console
.
log
(
`Failed to inject KeyEvent, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
}
...
...
zh-cn/application-dev/reference/apis/js-apis-inputmonitor.md
浏览文件 @
66c454b8
...
...
@@ -194,7 +194,7 @@ try {
```
js
try
{
inputMonitor
.
on
(
"
touch
"
,
touchEvent
=>
{
if
(
touchEvent
.
touches
.
size
()
==
3
)
{
// 当前有三个手指按下
if
(
touchEvent
.
touches
.
length
==
3
)
{
// 当前有三个手指按下
return
true
;
}
else
{
return
false
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录