1
vote
1answer
66 views

How to play multiple sounds simultaneously in Android?

I've been trying to make multiple sounds work simultaneously but I kept getting errors like Sample not ready and Error creating AudioTrack. Though I've taken care of the first error, the other error ...
1
vote
1answer
2k views

Playing sound over speakers while playing music through headphones

I have an AudioTrack streaming via headphones. I have to send a SoundPool to built-in speakers only, without interrupting the AudioTrack playing over the headphones. Any hacks gangsters?
0
votes
0answers
110 views

How to play to Audio-jack and to Device speakers two different sounds simultaneously

I need help with finding a way to play 2 different sound file to 2 different Stream types (AudioManager). I want to play a wav to wired-headset (AudioJack) and play an alarm sound at the same time on ...
2
votes
1answer
3k views

Android the fastest way to load and play sound in application

I'm working on a project in which I have to load 6 different sounds in one activity and play all sound on button click.The sound file are not so big,but the problem is that maybe they will be more.So ...
4
votes
4answers
2k views

Playing two sounds Simutaneosly

I am trying to play two sounds simutaneosly in android.I have created two MediaPlayers and am using the code below.They are currently playing one after another.Or not exactly one after another but ...
6
votes
1answer
1k views

How to Sync Sounds using SoundPool

I have been trying to get a few sounds to play at the same time; currently i'm using a shared instance of SoundPool. I would like 1, 2 or 3 sounds to be played at the exact same time with no lag. ...
8
votes
1answer
4k views

stream volume in SoundPool vs volume in AudioManager

I am so confused... SoundPool.play(int soundID, float leftVolume, float rightVolume, int priority, int loop, float rate) volume here is from 0.0 to 1.0 Tutorials I've seen recommend to calculate ...