I am currently developing my first Android application by reading Dev Documentation at Android official website. What I am trying to accomplish is to play some ring sounds. A section from my code is:
import android.app.Activity;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.view.View;
public class PlayRingSounds extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
public void PlayRingFile(View view) {
switch (view.getId()) {
case R.id.Button01:
MediaPlayer mp1 = MediaPlayer.create(this.getApplicationContext(), R.raw.aaa);
mp1.start();
break;
case R.id.Button02:
MediaPlayer mp2 = MediaPlayer.create(this.getApplicationContext(), R.raw.bbb);
mp2.start();
break;
}
}
}
The problem is when I click the 2nd button while "aaa" (sound file from 1st button) is playing, "bbb" also starts playing at the same time. Is there a way to stop "aaa" before "bbb" plays, or is there a way to stop all media players?
Update 12/30/2009 - New code is:
case R.id.Button01:
if (mp2.isPlaying())
{
mp2.stop();
mp2.release();
}
mp1.reset();
mp1.prepare();
mp1.start();
break;
case R.id.Button02:
if (mp1.isPlaying())
{
mp1.stop();
mp1.release();
}
mp2.reset();
mp2.prepare();
mp2.start();
break;
mp1.prepare() and mp2.prepare() give IOException error.