可以在彩信中发送多个图像吗?

时间:2013-05-16 12:00:15

标签: java android send mms

是否可以在Android中附加多个图像?我使用这段代码:

intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File("/sdcard/file.gif")));

但我想发送两到三张图片。

我解决了。 在我有这个代码之前: Intent sendIntent = new Intent(Intent.ACTION_SEND);

现在我有了这个: Intent sendIntent = new Intent(Intent.ACTION_SEND_MULTIPLE);

和这个

ArrayList<Uri> uris = new ArrayList<Uri>();

uris.add(Uri.fromFile(new File("/sdcard/file1.gif")));

uris.add(Uri.fromFile(new File("/sdcard/file1.gif")));

sendIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);

感谢所有

0 个答案:

没有答案