默认短信作曲家与附件android

时间:2014-04-12 09:23:45

标签: android android-intent android-mms

我想发送带有附件的短信,即图片或视频。它适用于小图像,但是当图像大小超过160k时,它会显示消息“图片压缩太大......”但是之后没有打开短信作曲家。我正在使用三星盛大4.2。它在其他设备中正常工作。

这是我的代码:

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

0 个答案:

没有答案