2

I'm writing an app that sends sms using SmsManager. How can I get informations about success of this operation? Is there a BroadcastReceiver for "sms sent" events?

Thank you in advice

supergiox
  • 1,586
  • 7
  • 19
  • 27

1 Answers1

1

On devices that use the default Android SMS manager, you should have a content://sms/sent provider. If you create a ContentObserver on that provider URL you should be able to receive notifications about sent SMS messages.

Femi
  • 64,273
  • 8
  • 118
  • 148