You can send SMS by your android application. Simply create an Intent and pass ACTION_VIEW in constructor. Set type of intent as "vnd.android-dir/mms-sms". It will open you SMS editor with your custom text.
Intent smsIntent = new Intent(Intent.ACTION_VIEW);
smsIntent.putExtra("sms_body","Hello, How r you !");
smsIntent.setType("vnd.android-dir/mms-sms");
startActivity(smsIntent);
No comments:
Post a Comment