Saturday 5 May 2012

How to open Default Sms Screen To Send SMS in Android

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);

No comments:

Post a Comment