I\'m creating a game application with background music.I used Android Service to play the background music because I wanted to run BGM while changing activities. my problem
put this line in yout activity
stopService(new Intent(this, BackgroundMusicService.class));
in onDestroy() method where you pressing the home button.