I\'d like to play audio from a file into the phone\'s earpiece (or headset of that is connected) using the android MediaPlayer
. I tried using the MODE_IN_CALL h
I found i needed to set both the mediaplayer and Audiomanager
private MediaPlayer mp = new MediaPlayer();
AudioManager mAudioManager = (AudioManager) v.getContext()
.getSystemService(Context.AUDIO_SERVICE);
mAudioManager.setSpeakerphoneOn(false);
mp.setAudioStreamType(AudioManager.STREAM_VOICE_CALL);