是否可以在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);
谢谢大家