Below Code show how we send SMS using new intent in android:-
Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.putExtra("sms_body", "Your Msg");
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);
Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.putExtra("sms_body", "Your Msg");
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);
No comments:
Post a Comment