I have a service that can be started and stopped from a button, but within the service I want to register a receiver to listen for SMS broadcasts. I only want the service to listen for SMS while it is running. I tried registerReceiver(receiver, intentfilter), but this does not work. What am I doing wrong?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You must set permissions in the AndroidManifest file.
|
|||||||
|
|
If you want to only receive the broadcast while your service is running you will need to dynamically register your receiver in onCreate() Also it is important to not forget to unregister your receiver in the onDestroy() method! Example:
|
|||||||
|
|
Remove the intent-filter from the xml and do only the dynamic registration of the Receiver. If you do not want it working when the service is off, then unregister it before stopping the service. Do not forget to add the permission to the xml though.... |
|||
|
|