未验证 提交 368973ba 编写于 作者: G gloria 提交者: Gitee

【OpenHarmony开源贡献者计划2022】js-apis-audio 修改描述错误+删除重复信息

Signed-off-by: Ngloria <80926032@qq.com>
上级 a3104368
...@@ -2185,7 +2185,7 @@ requestIndependentInterrupt(focusType: FocusType, callback: AsyncCallback<boolea ...@@ -2185,7 +2185,7 @@ requestIndependentInterrupt(focusType: FocusType, callback: AsyncCallback<boolea
| 参数名 | 类型 | 必填 | 说明 | | 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------------- | ---- | ----------------- | | -------- | ----------------------------- | ---- | ----------------- |
| focusType | [FocusType](#focustype) | 是 | 焦点类型的枚举。 | | focusType | [FocusType](#focustype) | 是 | 焦点类型。 |
| callback | AsyncCallback&lt;boolean&gt; | 是 | 回调,返回焦点申请成功/失败状态。 | | callback | AsyncCallback&lt;boolean&gt; | 是 | 回调,返回焦点申请成功/失败状态。 |
**示例:** **示例:**
...@@ -2214,7 +2214,7 @@ requestIndependentInterrupt(focusType: FocusType: Promise<boolean\> ...@@ -2214,7 +2214,7 @@ requestIndependentInterrupt(focusType: FocusType: Promise<boolean\>
| 参数名 | 类型 | 必填 | 说明 | | 参数名 | 类型 | 必填 | 说明 |
| ------ | ---- | ---- | ---- | | ------ | ---- | ---- | ---- |
| focusType | [FocusType](#focustype) | 是 | 焦点类型的枚举。 | | focusType | [FocusType](#focustype) | 是 | 焦点类型。 |
**返回值:** **返回值:**
...@@ -2247,7 +2247,7 @@ abandonIndependentInterrupt(focusType: FocusType, callback: AsyncCallback<boolea ...@@ -2247,7 +2247,7 @@ abandonIndependentInterrupt(focusType: FocusType, callback: AsyncCallback<boolea
| 参数名 | 类型 | 必填 | 说明 | | 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------------- | ---- | ----------------- | | -------- | ----------------------------- | ---- | ----------------- |
| focusType | [FocusType](#focustype) | 是 | 焦点类型的枚举。 | | focusType | [FocusType](#focustype) | 是 | 焦点类型。 |
| callback | AsyncCallback&lt;boolean&gt; | 是 | 回调,返回废除焦点成功/失败状态。 | | callback | AsyncCallback&lt;boolean&gt; | 是 | 回调,返回废除焦点成功/失败状态。 |
**示例:** **示例:**
...@@ -2276,7 +2276,7 @@ abandonIndependentInterrupt(focusType: FocusType]: Promise<boolean\> ...@@ -2276,7 +2276,7 @@ abandonIndependentInterrupt(focusType: FocusType]: Promise<boolean\>
| 参数名 | 类型 | 必填 | 说明 | | 参数名 | 类型 | 必填 | 说明 |
| ------ | ---- | ---- | ---- | | ------ | ---- | ---- | ---- |
| focusType | [FocusType](#focustype) | 是 | 焦点类型的枚举。 | | focusType | [FocusType](#focustype) | 是 | 焦点类型。 |
**返回值:** **返回值:**
...@@ -3183,7 +3183,7 @@ audioManager.getRoutingManager((err,AudioRoutingManager)=>{ ...@@ -3183,7 +3183,7 @@ audioManager.getRoutingManager((err,AudioRoutingManager)=>{
selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback&lt;void&gt;): void selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors, callback: AsyncCallback&lt;void&gt;): void
选择音频输出设备,当前只能选择一个输出设备,使用callback方式异步返回结果。该接口为系统应用接口。 选择音频输出设备,当前只能选择一个输出设备,使用callback方式异步返回结果。
**系统接口:** 该接口为系统接口 **系统接口:** 该接口为系统接口
...@@ -3221,7 +3221,7 @@ selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors): Promise&lt;void& ...@@ -3221,7 +3221,7 @@ selectOutputDevice(outputAudioDevices: AudioDeviceDescriptors): Promise&lt;void&
**系统接口:** 该接口为系统接口 **系统接口:** 该接口为系统接口
选择音频输出设备,当前只能选择一个输出设备,使用Promise方式异步返回结果。该接口为系统应用接口。 选择音频输出设备,当前只能选择一个输出设备,使用Promise方式异步返回结果。
**系统能力:** SystemCapability.Multimedia.Audio.Device **系统能力:** SystemCapability.Multimedia.Audio.Device
...@@ -3262,7 +3262,7 @@ selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: Audi ...@@ -3262,7 +3262,7 @@ selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: Audi
**系统接口:** 该接口为系统接口 **系统接口:** 该接口为系统接口
根据过滤条件,选择音频输出设备,当前只能选择一个输出设备,使用callback方式异步返回结果。该接口为系统应用接口。 根据过滤条件,选择音频输出设备,当前只能选择一个输出设备,使用callback方式异步返回结果。
**系统能力:** SystemCapability.Multimedia.Audio.Device **系统能力:** SystemCapability.Multimedia.Audio.Device
...@@ -3306,7 +3306,7 @@ selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: Audi ...@@ -3306,7 +3306,7 @@ selectOutputDeviceByFilter(filter: AudioRendererFilter, outputAudioDevices: Audi
**系统接口:** 该接口为系统接口 **系统接口:** 该接口为系统接口
根据过滤条件,选择音频输出设备,当前只能选择一个输出设备,使用Promise方式异步返回结果。该接口为系统应用接口。 根据过滤条件,选择音频输出设备,当前只能选择一个输出设备,使用Promise方式异步返回结果。
**系统能力:** SystemCapability.Multimedia.Audio.Device **系统能力:** SystemCapability.Multimedia.Audio.Device
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册