I am using Intent.ACTION_VIEW to launch New Message composer for the mobile using code given below
Intent smsIntent = new Intent(Intent.ACTION_VIEW);
smsIntent.setData(Uri.parse("smsto:"));
smsIntent.setType("vnd.android-dir/mms-sms");
smsIntent.putExtra("address" , numbersString); //delimited phone numbers
smsIntent.putExtra("sms_body" , Constants.SMS_DEFAULT_MESSAGE); //actual message
startActivity(smsIntent);
This correctly starts activity that launches the New Message composer. However, I want to know whether the User went ahead and actually sent the message, or did he cancel the sending of message.