In android widget application, i used a broadcast receiver to intercept sms for certain purpose. It is working fine… but a problem arises when i removes the widget from home screen. SMS is not coming to inbox. My question is how to unregister SMS receiver ?
please help, thanks in advance
Possibly you are registering you receiver in manifest file. Remove it from manifest and try to register it using
registerReceiver(BroadcastReceiver myreceiver, IntentFilter filter)in youronCreate()oronResume(), and when you want to unregister it, useunregisterReceiver(BroadcastReceiver myreceiver)in youronPause()oronDestroy(). Hope it will work…