I've tried to follow the other questions, but I don't think that they are what I am looking for.

Here's my java: http://pastie.org/private/psy2nnys8i0ajz4i8qfw

I know I am opening multiple instances of mp, so I try to detect if one is playing, and stop it on lines 34-39, but it still overlaps

please advise. I tried singleton's - but that didn't work, I also tried to use one mediaplayer instance and set the datasource, but couldnt figure out how to pass the R.raw.clipname to it.

Thanks!

link|improve this question

@Harry I was just about to write that, so +1 for soundpool :) – Keyser Feb 17 at 15:54
@keyser5053 I think soundpool would be an issue because of the size of the files - they range from 800kb to 1mb, and I read that soundpool works best for smaller files then what I use? – dunivanb Feb 17 at 15:57
I don't know. It might be an issue, but if it's easy to test, go ahead and do so. Otherwise, all I can suggest is debugging like crazy...(sry). – Keyser Feb 17 at 16:31
feedback

1 Answer

up vote 1 down vote accepted

It would be somehow hard to try and debug/trace your code. But I can give you a solution to open a raw resource in your MediaPlayer, which will also make your code more robust and simple :

MediaPlayer player=new MediaPlayer();
player.setDataSource(
    getResources().openRawResourceFd(R.raw.clip1).getFileDescriptor());
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.