android 启动蓝牙 sco 不在棒棒糖中路由麦克风

android start bluetooth sco not routing mic in lollipop

在我的应用程序中,用户可以通过它拨打任何号码,我正在通过

启动蓝牙
audioManager.setBluetoothScoOn(true);
audioManager.startBluetoothSco();

它适用于所有设备,但在 android 5.0.1 上, 它使用phone的麦克风,而不是蓝牙耳机的麦克风。 在之前的 android os 上,它可以工作,但在棒棒糖上不行,只有传入的音频被路由到蓝牙耳机,但它从不使用蓝牙麦克风。

您应该尝试禁用扬声器并确保模式设置为正常:

audioManager.setMode(AudioManager.MODE_NORMAL);
audioManager.setSpeakerphoneOn(false);
audioManager.setBluetoothScoOn(true);
audioManager.startBluetoothSco();