i tried to stream an audio from url and its working fine. The url is playing on background also when i quit the application. But i cant able to stop it when i enter my app again how could i stop. Help is appreciated.
Put this in your main activity (or wherever you placed your player):
protected void onPause() {
super.onPause();
// Put your media player object here
mp.pause();
}
That should stop your music whenever you leave your activity.