在我的应用中,我尝试通过ACTION_SEND
分享来自互联网的照片Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri screenshotUri = Uri
.parse("http://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/PNG_transparency_demonstration_2.png/280px-PNG_transparency_demonstration_2.png");
sharingIntent.setType("image/*");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
sharingIntent.putExtra(Intent.EXTRA_TEXT, "MotivateMe");
startActivity(Intent.createChooser(sharingIntent,
"share with: "));
但这不起作用,都无法加载图片。 可以通过互联网参考分享照片
答案 0 :(得分:1)
不,您的照片参考链接将被视为链接。您必须在共享之前在本地保存。临时下载然后尝试使用本地链接发送。