A part of my code: (Problem Explanation follows)
@Override
protected void onStop() {
super.onStop();
if(mediaPlayer != null){
mediaPlayer.release();
mediaPlayer = null;
}
}
My main idea of using this was to stop playing the audio when the home button was pressed, but this doesn't seem to be happening as audio isn't stopping. Thanks in advance.. :)