Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Android 上,是否可以同时将音频流式传输到蓝牙配对扬声器和内置扬声器?
仔细一看AudioManager,好像不是这样的。我认为可能有一种方法可以通过MediaRouter,但我找不到任何文档可以为我指明正确的方向。
AudioManager
MediaRouter
如果有人有任何建议,将不胜感激。谢谢!
你可以用AudioManager.STREAM_RING. 此属性设置为MediaPlayer:
AudioManager.STREAM_RING
MediaPlayer
mediaPlayer.setAudioStreamType(AudioManager.STREAM_RING);
准备好了。
但!你真的会遇到蓝牙设备同步的问题。现在我正在尝试解决它。