I\'m new to Android, so I have a problem. In Android I want to play background music as soon as my music player starts and have it continue even if the activity changes from
Very Simple is when you want your MediaPlayer volume off, try to set up with setVolume(int leftVolume, int RightVolume)
So whenever you want to stop your MediaPlayer's Volume off. use
music.setVolume(0,0);
Even you can pause with stop your MediaPlayer with music.pause();
And Stop mediaplayer with music.stop();