Send mms via intent

1 vote · 0 comments

Send a picture via mms.

raw ·
copy
· download
Uri mmsUri = Uri.parse("content://media/external/images/media/1"); Intent intent = new Intent(Intent.ACTION_SEND); intent.putExtra("sms_body", "Hi how are you"); intent.putExtra(Intent.EXTRA_STREAM, mmsUri); intent.setType("image/png"); startActivity(intent);

Be the first to comment

Sign in with OpenID