android 棒棒糖上的蓝牙路由

android bluetooth routing on lollipop

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

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

它适用于所有设备,但在 android 5.0.1 上:它使用 phone 的 microphone,而不是蓝牙耳机的 microphone .

在之前的 android os 上:可以,但在棒棒糖上不行:只有传入的音频被路由到蓝牙耳机,但它从不使用蓝牙微型phone。

您是否尝试过明确禁用扬声器?尝试如下操作:

audioManager.setSpeakerphoneOn(false);
audioManager.setBluetoothScoOn(true);
audioManager.startBluetoothSco();