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
965 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
BroadcastReceiverto receive theACTION_SCREEN_OFFandACTION_SCREEN_ONintent 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.ServiceextendsContext, so you can callregisterReceiverdirectly.