以编程方式将音频通道从chromecast屏幕镜像切换到蓝牙耳机

时间:2018-03-21 17:06:35

标签: android audio kotlin chromecast

我的代码可以使用以下代码将平板电脑的音频通道从扬声器切换到我连接的蓝牙耳机:

if (bluetoothSound) {
   audioManager.isBluetoothScoOn = false
   audioManager.stopBluetoothSco()
   audioManager.isSpeakerphoneOn = true
   audioManager.mode = AudioManager.MODE_NORMAL
   initButtonSettingLayout()
 }
 else {
   audioManager.mode = AudioManager.MODE_IN_COMMUNICATION
   audioManager.isBluetoothScoOn = true
   audioManager.startBluetoothSco()
   audioManager.isSpeakerphoneOn = false
 }

但是一旦我使用我的chromecast屏幕镜像,它们都不起作用。 我需要一种强大的方式来切换音频通道。 谢谢

0 个答案:

没有答案