Search code examples
androidandroid-activityandroid-mediaplayer

Music turn off when screen does so


I want my app's music to turn off when user turn off the screen. I bet there is a very simple line of code to achieve this, but I haven't found it yet. Please help me, have a good day :)


Solution

  • Override OnPause() method of your activity. And, stop your music here like mediaPlayer.stop();.