I'm creating a simple game and the same background music is being played throughout its whole life. I'm using a static class to manage my MediaPlayer so the music can continue playing without being interrupted when the game switches between different Activities.
The problem: when the user presses the Home button, I'd like to stop the music. Doing this on onStop() or onPause() doesn't work in this case, as these events are also called at other times when creating, destroying or switching between activities.
Is there any way I can create some code that is called only when the Home button is pressed, or maybe when the "whole app" loses focus?