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 :)
Override OnPause()
method of your activity. And, stop your music here like mediaPlayer.stop();
.