Basically, when I click a button, it plays a sound, it's a soundboard.. The main problem I have is when I use release(); the first time round the audio is played, when I go to play the sound again it just crashes the app. I tried numerous combinations in the OnCompletion method, changing them around, nothing. No matter what code I put, when I put release(); it just crashes. Here's my code;

    public class MyClass extends Activity{

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.list_view);
        this.setVolumeControlStream(AudioManager.STREAM_MUSIC);

        final MediaPlayer mpB1 = MediaPlayer.create(this, R.raw.s101);
        final MediaPlayer mpB2 = MediaPlayer.create(this, R.raw.s102);
            <etc>


        Button b1 = (Button) findViewById(R.id.sound101);
        b1.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {
                // TODO Auto-generated method stub
                mpB1.start();
                mpB1.setOnCompletionListener(new OnCompletionListener() {

                    public void onCompletion(MediaPlayer mpB1) {
                        // TODO Auto-generated method stub
                        onPause();
                        onStop();
                        mpB1.release();

                    }

                });
            }
        });

        Button b2 = (Button) findViewById(R.id.sound102);
        b2.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {
                // TODO Auto-generated method stub
                mpB2.start();
                mpB2.setOnCompletionListener(new OnCompletionListener() {

                    public void onCompletion(MediaPlayer mp) {
                        // TODO Auto-generated method stub
                        onPause();
                        onStop();
                        mpB2.release();
                    }

                });
            }
        });
                    <etc, you get the idea.. soundboard>

Here is my LogCat;

    01-01 02:58:53.218: E/AndroidRuntime(682): FATAL EXCEPTION: main
    01-01 02:58:53.218: E/AndroidRuntime(682): java.lang.IllegalStateException
    01-01 02:58:53.218: E/AndroidRuntime(682):  at android.media.MediaPlayer._start(Native Method)
    01-01 02:58:53.218: E/AndroidRuntime(682):  at android.media.MediaPlayer.start(MediaPlayer.java:819)
    01-01 02:58:53.218: E/AndroidRuntime(682):  at 'com.package'$1.onClick('Class'.java:73)
    01-01 02:58:53.218: E/AndroidRuntime(682):  at android.view.View.performClick(View.java:2485)
    01-01 02:58:53.218: E/AndroidRuntime(682):  at android.view.View$PerformClick.run(View.java:9080)
    01-01 02:58:53.218: E/AndroidRuntime(682):  at android.os.Handler.handleCallback(Handler.java:587)
    01-01 02:58:53.218: E/AndroidRuntime(682):  at android.os.Handler.dispatchMessage(Handler.java:92)
    01-01 02:58:53.218: E/AndroidRuntime(682):  at android.os.Looper.loop(Looper.java:123)
    01-01 02:58:53.218: E/AndroidRuntime(682):  at android.app.ActivityThread.main(ActivityThread.java:3683)
    01-01 02:58:53.218: E/AndroidRuntime(682):  at java.lang.reflect.Method.invokeNative(Native Method)
    01-01 02:58:53.218: E/AndroidRuntime(682):  at java.lang.reflect.Method.invoke(Method.java:507)
    01-01 02:58:53.218: E/AndroidRuntime(682):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
    01-01 02:58:53.218: E/AndroidRuntime(682):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
    01-01 02:58:53.218: E/AndroidRuntime(682):  at dalvik.system.NativeStart.main(Native Method)

That's it. Can anyone guess the problem? I tried to debug the issue, messing with the IllegalStateException. I don't know how.

link|improve this question
Welcome to StackOverlow. If any of the answers solves your problem please don't forget to accept that answer. Click check mark next to the question to accept answer. – Emre Erkan Jan 1 at 10:50
Don't delete the content of your question once it's answered. Other people may find it useful. – Bill the Lizard Feb 13 at 13:59
feedback

2 Answers

I think these lines:

onPause();
onStop();

are calling your activity pause and stop methods. I don't know if this is your goal or not though. By calling these methods you are ending your application(removing it from the top of the stack of activities). You are probably getting the error because you are trying to do something after you've already ended.

If your goal is to exit your activity when the media is complete then make your completion listener look like this:

                public void onCompletion(MediaPlayer mp) {
                    // TODO Auto-generated method stub
                    mpB2.release();
                    YourActivity.this.finish();
                }

alternatively you could just call finish() here and then override your activities onStop() method and include the release() call inside there.

link|improve this answer
If you don't want to end your Activity, then why have you called onPause() and onStop() in onCompletion()? Not only that, but after you explicitly make those calls, THEN you call mb1.release(). I think that's your bit that needs reconstructing, but I'm not sure why you've called those methods and what you're trying to do..so I could be wrong – Jade Byfield Jan 1 at 5:33
feedback

Since you're trying to play a soundboard, why not just use SoundPool?

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.