I have the below event to send sms programatically. However is doens\'t seem to work, the toast pop up appears and there is no entry in logcat, just no message is created. I
Actually this is working for me:
String messageText = "...YOUR TEXT HERE..."; SmsManager sm = SmsManager.getDefault(); sm.sendTextMessage("PHONE NUMBER HERE", null, messageText, null, null);
Just to be sure, with this you will not find the message sent in your message history.