I have make one application in android in which i take three buttons in xml and in java i set the onclick event,

when play button is clicked song is prepared and play, when stop button is clicked song is stopped, when pause button is clicked song is paused.

But my problem is that when I clicked play button song is played after i click on stop button then song is stopped after I clicked on play button, but at this time song is not played,

the code I created for this app. is given below.

package com.mydemo;

import java.io.IOException;

import android.app.Activity;
import android.media.MediaPlayer;
import android.media.MediaPlayer.OnCompletionListener;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MydemoActivity extends Activity {
/** Called when the activity is first created. */

Button bPlay,bPause,bStop;
MediaPlayer mp;
int position = 0;


@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    mp = MediaPlayer.create(this, R.raw.fluet);

    bPlay = (Button) findViewById(R.id.bPlay);
    bPause = (Button)findViewById(R.id.bPause);
    bStop = (Button) findViewById(R.id.bStop);

    bPause.setVisibility(View.GONE);

    mp.setOnCompletionListener(new OnCompletionListener() {

        @Override
        public void onCompletion(MediaPlayer arg0) {

            position = 0;
            bPlay.setVisibility(View.VISIBLE);
            bPause.setVisibility(View.GONE);

        }
    });

    bPlay.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View arg0) {

            if(position > 0)
            {
                mp.seekTo(position);
                mp.start();
            }

            try {
                mp.prepare();
            } catch (IllegalStateException e)     {                 
                e.printStackTrace();
            } catch (IOException e) {                   
                e.printStackTrace();
            }
            mp.start();

            bPlay.setVisibility(View.GONE);
            bPause.setVisibility(View.VISIBLE);
        }
    });

    bPause.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View arg0) {            

            if(mp!=null)
            {
                mp.pause();
                position = mp.getCurrentPosition();
            }

            bPlay.setVisibility(View.VISIBLE);
            bPause.setVisibility(View.GONE);
        }
    });        

    bStop.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View arg0) {

            mp.stop();
            position = 0;

            bPlay.setVisibility(View.VISIBLE);
                bPause.setVisibility(View.GONE);                
        }
    });
  }
}

see this Updated code:

package com.mydemo;

import java.io.IOException;

import android.app.Activity;
import android.media.MediaPlayer;
import android.media.MediaPlayer.OnCompletionListener;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MydemoActivity extends Activity {
/** Called when the activity is first created. */

Button bPlay,bPause,bStop;
MediaPlayer mp;
int position = 0;


@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    mp = MediaPlayer.create(this, R.raw.fluet);

    bPlay = (Button) findViewById(R.id.bPlay);
    bPause = (Button)findViewById(R.id.bPause);
    bStop = (Button) findViewById(R.id.bStop);

    bPause.setVisibility(View.GONE);

    mp.setOnCompletionListener(new OnCompletionListener() {

        @Override
        public void onCompletion(MediaPlayer arg0) {

            position = 0;
            bPlay.setVisibility(View.VISIBLE);
            bPause.setVisibility(View.GONE);

        }
    });

    bPlay.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View arg0) {



            if(mp.isPlaying() == false)
            {
                try {
                    mp.prepare();
                } catch (IllegalStateException e) {                 
                    e.printStackTrace();
                } catch (IOException e) {                   
                    e.printStackTrace();
                }
                mp.start();
            }


            bPlay.setVisibility(View.GONE);
            bPause.setVisibility(View.VISIBLE);
        }
    });

    bPause.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View arg0) {            

            if(mp!=null)
            {
                mp.pause();
                position = mp.getCurrentPosition();
            }

            bPlay.setVisibility(View.VISIBLE);
            bPause.setVisibility(View.GONE);
        }
    });        

    bStop.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View arg0) {

            mp.stop();
            position = 0;

            bPlay.setVisibility(View.VISIBLE);
             bPause.setVisibility(View.GONE);               
        }
    });
 }
}
link|improve this question

50% accept rate
feedback

2 Answers

up vote 0 down vote accepted
 bStop.setOnClickListener(new View.OnClickListener() 
        {

        @Override
        public void onClick(View arg0) {

            mp.release();
            position = 0;

            bPlay.setVisibility(View.VISIBLE);
             bPause.setVisibility(View.GONE);               
        }
    });
bStop.setOnClickListener(new View.OnClickListener() {

    @Override
    public void onClick(View arg0) {

       if(mp.isplaying == false)
        {
   mp = MediaPlayer.create(this, R.raw.fluet);

        }
    }
});
link|improve this answer
feedback

Edit ::
you need to apply condition in play event like ::

if(mp.isplaying == false)
{
   //play the song
}
link|improve this answer
thanks nik, but there is no such a method isplayed in android. – Jayesh Oct 5 '11 at 4:44
try this mp.isPlaying() == true . – Dr.nik Oct 5 '11 at 4:48
I had tried that also but it not working, it gives same result. – Jayesh Oct 5 '11 at 4:57
please update your code that you have tried – Dr.nik Oct 5 '11 at 4:58
i have write the updated code in question, see that and tell me why it not working. – Jayesh Oct 5 '11 at 5:08
feedback

Your Answer

 
or
required, but never shown

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