Hey there, lil bio before I noob it up.
I know my way around more than a few programming languages, and i took java in school, but its far from my strong point.
My question is this..
Whats the best way to play a sound clip repeatedly? The way I'm doing it right now...
Decoration -
MediaPlayer kick1 = MediaPlayer.create(this,R.raw.kick1);
Calling -
kick1.start();
...It crashes after.. 27 or so plays...
I spent some time reading, and i tried to figure out the best way to do this, but I'm stuck and so I'm here.
I tried:
-Stopping the clip
-re-preparing the clip;
-setting the seekTo(0) and replaying it..
...All of which either crashed it or did nothing..
Thanks In Advance
Crunchy


