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
To stop the song, you can do music.stop() on Destroy. means music stops when your app closed or killed
@Override protected void onDestroy() { music.stop(); super.onDestroy(); }