Skip to content Skip to sidebar Skip to footer

Android Mms Intent With With Image And Body Text

I am trying to create an intent that will start the MMS application for me with an image file attached and some pre-defined text present in the message body. Thus far I've been ab

Solution 1:

The following code works for me:

Intent intent = new Intent(Intent.ACTION_SEND);
intent.putExtra("sms_body", "Hi how are you");
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File("/sdcard/file.gif")));
intent.setType("image/gif"); 
startActivity(Intent.createChooser(intent,"Send"));

Post a Comment for "Android Mms Intent With With Image And Body Text"