My music stop when I press home button but when the screen is off it is playing. How can I stop this? And restore when the screen is on.
Android how to stop music when screen is off
949 Views Asked by Seravier At
2
My music stop when I press home button but when the screen is off it is playing. How can I stop this? And restore when the screen is on.
You need to programmatically register a
BroadcastReceiver
to receive theACTION_SCREEN_OFF
andACTION_SCREEN_ON
intent actions. You can not register a receiver in your AndroidManifest.xml for these actions.Hopefully you are playing music in a
Service
, in which case you can register the screen off receiver when your music starts.Service
extendsContext
, so you can callregisterReceiver
directly.