1

In my android application, I want to monitor the incoming/outgoing sms by using a BroadcastReceiver, but the BroadcastReceiver only detects incoming sms. Is there any intent filter which can monitor the outgoing sms?

Here is my code.

IntentFilter filter = new IntentFilter();
filter.addAction("android.provider.Telephony.SMS_RECEIVED");
filter.addAction("android.provider.Telephony.SMS_SENT");           
context.registerReceiver(smsListner, filter);
Illidanek
  • 996
  • 1
  • 18
  • 32
chimbu
  • 786
  • 5
  • 16
  • 36

0 Answers0