Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
a2ba5f83
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,发现更多精彩内容 >>
提交
a2ba5f83
编写于
6月 20, 2023
作者:
A
ASheLock
提交者:
差一点点
7月 01, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
setAudioDevice api 9 doc接口删除
Signed-off-by:
N
ASheLock
<
zhoujie223@huawei.com
>
上级
46e65a41
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
13 addition
and
102 deletion
+13
-102
zh-cn/application-dev/reference/apis/js-apis-call.md
zh-cn/application-dev/reference/apis/js-apis-call.md
+13
-102
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-call.md
浏览文件 @
a2ba5f83
...
...
@@ -3592,13 +3592,15 @@ setAudioDevice\(device: AudioDevice, callback: AsyncCallback\<void\>\): void
**系统接口:**
此接口为系统接口。
**需要权限**
:ohos.permission.SET_TELEPHONY_STATE
**系统能力**
:SystemCapability.Telephony.CallManager
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ---------------------------- | ---- | ---------- |
| device |
[
AudioDevice
](
#audiodevice10
)
| 是 | 音频设备。 |
| device |
[
AudioDevice
](
#audiodevice10
)
| 是 | 音频设备。 |
| callback | AsyncCallback
<
void
>
| 是 | 回调函数。 |
**错误码:**
...
...
@@ -3607,6 +3609,7 @@ setAudioDevice\(device: AudioDevice, callback: AsyncCallback\<void\>\): void
| 错误码ID | 错误信息 |
| -------- | -------------------------------------------- |
| 201 | Permission denied. |
| 202 | Non-system applications use system APIs. |
| 401 | Parameter error. |
| 8300001 | Invalid parameter value. |
...
...
@@ -3641,103 +3644,13 @@ setAudioDevice\(device: AudioDevice): Promise\<void\>
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ---------------------------- | ---- | ---------- |
| device |
[
AudioDevice
](
#audiodevice10
)
| 是 | 音频设备。 |
**错误码:**
以下错误码的详细介绍请参见
[
ohos.telephony(电话子系统)错误码
](
../../reference/errorcodes/errorcode-telephony.md
)
。
| 错误码ID | 错误信息 |
| -------- | -------------------------------------------- |
| 201 | Permission denied. |
| 202 | Non-system applications use system APIs. |
| 401 | Parameter error. |
| 8300001 | Invalid parameter value. |
| 8300002 | Operation failed. Cannot connect to service. |
| 8300003 | System internal error. |
| 8300999 | Unknown error code. |
**示例:**
```
js
let
audioDevice
=
{
deviceType
:
1
}
call
.
setAudioDevice
(
audioDevice
).
then
(()
=>
{
console
.
log
(
`setAudioDevice success.`
);
}).
catch
((
err
)
=>
{
console
.
error
(
`setAudioDevice fail, promise: err->
${
JSON
.
stringify
(
err
)}
`
);
});
```
## call.setAudioDevice<sup>9+</sup>
setAudioDevice
\(
device: AudioDevice, options: AudioDeviceOptions, callback: AsyncCallback
\<
void
\>\)
: void
设置通话音频设备。使用callback异步回调。
**系统接口:**
此接口为系统接口。
**系统能力**
:SystemCapability.Telephony.CallManager
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------------ | ---- | -------------- |
| device |
[
AudioDevice
](
#audiodevice10
)
| 是 | 音频设备。 |
| options |
[
AudioDeviceOptions
](
#audiodeviceoptions9
)
| 是 | 音频设备参数。 |
| callback | AsyncCallback
<
void
>
| 是 | 回调函数。 |
**错误码:**
以下错误码的详细介绍请参见
[
ohos.telephony(电话子系统)错误码
](
../../reference/errorcodes/errorcode-telephony.md
)
。
| 错误码ID | 错误信息 |
| -------- | -------------------------------------------- |
| 202 | Non-system applications use system APIs. |
| 401 | Parameter error. |
| 8300001 | Invalid parameter value. |
| 8300002 | Operation failed. Cannot connect to service. |
| 8300003 | System internal error. |
| 8300999 | Unknown error code. |
**示例:**
```
js
let
audioDevice
=
{
deviceType
:
1
}
let
audioDeviceOptions
=
{
bluetoothAddress
:
"
IEEE 802-2014
"
}
call
.
setAudioDevice
(
audioDevice
,
audioDeviceOptions
,
(
err
)
=>
{
console
.
log
(
`callback: err->
${
JSON
.
stringify
(
err
)}
`
);
});
```
## call.setAudioDevice<sup>9+</sup>
setAudioDevice
\(
device: AudioDevice, options?: AudioDeviceOptions
\)
: Promise
\<
void
\>
设置通话音频设备。使用Promise异步回调。
**系统接口:**
此接口为系统接口。
**系统能力**
:SystemCapability.Telephony.CallManager
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------------------------------------ | ---- | ------------------ |
| device |
[
AudioDevice
](
#audiodevice10
)
| 是 | 音频设备。 |
| options |
[
AudioDeviceOptions
](
#audiodeviceoptions9
)
| 否 | 音频设备参数参数。 |
| device |
[
AudioDevice
](
#audiodevice10
)
| 是 | 音频设备。 |
**返回值:**
| 类型 | 说明 |
| ------------------- | ---------------------------
----
|
| Promise
<
void
>
| 以Promise形式异步返回
设置
结果。 |
| ------------------- | --------------------------- |
| Promise
<
void
>
| 以Promise形式异步返回结果。 |
**错误码:**
...
...
@@ -3745,6 +3658,7 @@ setAudioDevice\(device: AudioDevice, options?: AudioDeviceOptions\): Promise\<vo
| 错误码ID | 错误信息 |
| -------- | -------------------------------------------- |
| 201 | Permission denied. |
| 202 | Non-system applications use system APIs. |
| 401 | Parameter error. |
| 8300001 | Invalid parameter value. |
...
...
@@ -3758,10 +3672,7 @@ setAudioDevice\(device: AudioDevice, options?: AudioDeviceOptions\): Promise\<vo
let
audioDevice
=
{
deviceType
:
1
}
let
audioDeviceOptions
=
{
bluetoothAddress
:
"
IEEE 802-2014
"
}
call
.
setAudioDevice
(
audioDevice
,
audioDeviceOptions
).
then
(()
=>
{
call
.
setAudioDevice
(
audioDevice
).
then
(()
=>
{
console
.
log
(
`setAudioDevice success.`
);
}).
catch
((
err
)
=>
{
console
.
error
(
`setAudioDevice fail, promise: err->
${
JSON
.
stringify
(
err
)}
`
);
...
...
@@ -4802,7 +4713,7 @@ IP多媒体系统调用模式。
| 名称 | 类型 | 必填 | 说明 |
| --------------------------------- | ------------------------------------- | ---- | ---------------- |
| audioDeviceList
<sup>
10+
</sup>
|
[
Array\<AudioDevice\>
](
#audiodevice10
)
| 是 | 音频设备列表。 |
| currentAudioDevice
<sup>
10+
</sup>
|
[
AudioDevice
](
#audiodevice10
)
| 是 |
音频设备类型
。 |
| currentAudioDevice
<sup>
10+
</sup>
|
[
AudioDevice
](
#audiodevice10
)
| 是 |
当前音频设备
。 |
| isMuted
<sup>
10+
</sup>
| boolean | 是 | 是否静音。 |
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录