0

I want to send a sms with an attachment i.e. image or video. It is working correctly for small images but when the size of image is more than 160k, it shows message "picture too large compressing.." but not opening sms composer after that. I am using samsung grand 4.2. It is working correctly in other devices.

Here is my code:

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("vnd.android-dir/mms-sms");
intent.setData(Uri.parse("sms:"));
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(items.get(j).getAttachmentPath())));                             
startActivity(intent);
Charles
  • 50,943
  • 13
  • 104
  • 142

0 Answers0