What is the Android sent sms intent?
Hey! I'd like to know which is the intent android sends when it sends a message. And how can I listen for this intent in my application. I wanted that, when I send a message in native android messaging, my application listen this intent, so it will know a new message has been sent. So, which one is it, and how to listen for this intent? Thanks. plainjimbo I believe the Intent is: public static final String SMS_RECEIVED_ACTION = "android.provider.Telephony.SMS_SENT"; This guy had an article about how to build a BroadcastReceiver to do this. http://mobiforge.com/developing/story/sms-messaging