In my project, I am playing music file in android media player by using the following code
MediaPlayer mPlayer = MediaPlayer.create(MyActivity.this, R.raw.my
You could use simple if-check to handle the pausing. Try this:
if(mPlayer.isPlaying()){ mPlayer.pause(); } else { mPlayer.start(); }