Skip to content Skip to sidebar Skip to footer

Some Time Music Does Not Stop Android

There is an function which is called on onCreate method of playing music... public void playBeep() { try { if (m.isPlaying()) { m.stop(); m

Solution 1:

Try with this :

@OverrideprotectedvoidonPause() {
    super.onPause(); 
    isBeeping = false;
    if (m != null)
       m.release();       
}

Thanks.

Post a Comment for "Some Time Music Does Not Stop Android"