There is an function which is called on onCreate method of playing music...
public void playBeep() { try { if (m.isPlaying()) {
Try with this :
@Override protected void onPause() { super.onPause(); isBeeping = false; if (m != null) m.release(); }
Thanks.