05-08-2009 12:26 PM
I have 2 Player instnace. One need to play background sound, second to play other sound.
Background sound play in loop
bgPlayer.setLoopCount(-1);
try {
bgPlayer.start();
} catch (MediaException e) {
e.printStackTrace();
}
When i try to play sound using other Player, this (bgPlayer) stop play music. Why? How does it fix?
05-08-2009 03:25 PM
As far as I know there can be only one active player at a moment of time.
05-08-2009 04:00 PM
05-08-2009 04:37 PM
05-08-2009 04:40 PM