I have an android application in which am try to play a background sound for an particular activity(sound will play on single activity not for an whole application). Am using this code to start the MediaPlayer
MediaPlayer backMP = MediaPlayer.create(this, R.raw.theme_loop);
backMP.setLooping(true);
backMP.start();
It is working fine but I just want to stop the music on home button press for this I have try
backMP.release()
, backMp.stop()
in onPause()
method nothing is work for me.