我希望能够将蓝牙耳机用作麦克风。
是否可以将其设置为麦克风模式?
答案 0 :(得分:2)
AudioManager localAudioManager = (AudioManager) getSystemService("audio");
localAudioManager.setBluetoothScoOn(true);
localAudioManager.startBluetoothSco();
localAudioManager.setMode(2);
答案 1 :(得分:1)
是的,您必须使用startBluetoothSco()
希望在手机未通话时向/从蓝牙SCO耳机发送和接收音频的应用程序可以使用此方法。