Possible Duplicate:
Broadcast Receiver for Sent SMS
I am currently detecting when an SMS is received through a broadcast receiver like so:
<receiver android:name=".gathering.SMSNode">
<intent-filter>
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>
Is there a similar broadcast receiver for detecting when a message is sent?
And this code for separating send/receive events
Check the following url for reference:
http://www.mail-archive.com/android-developers@googlegroups.com/msg27154.html