supergiox
supergiox

Reputation: 1596

how to handle SMS SENT event?

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

Upvotes: 2

Views: 1917

Answers (1)

Femi
Femi

Reputation: 64700

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.

Upvotes: 1

Related Questions