Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.putExtra("sms_body", "Your Message");
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);
With above code we can easily launch the sms screen using intents.
Now just we give mobile number in To:Edit field.

