0
任何人都知道如何在設備的耳機或耳機揚聲器中播放音頻?如何通過僅使用mediaplayer的耳機播放音頻android
我已經使用這個:
AudioManager audio_service = (AudioManager) getSystemService
(Context.AUDIO_SERVICE);
// set the mode in call, so that the sound can come from earpiece
audio_service.setSpeakerphoneOn(false);
audio_service.setMode(AudioManager.MODE_IN_CALL);
audio_service.setRouting(AudioManager.MODE_NORMAL,
AudioManager.ROUTE_EARPIECE, AudioManager.ROUTE_ALL);
mediaplayer.start();
,但什麼都沒有發生..:| 任何人都可以打電話給我嗎?