通过ACTION_SEND分享指向某些照片的链接

时间:2013-09-23 10:32:05

标签: android android-intent

在我的应用中,我尝试通过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: "));

但这不起作用,都无法加载图片。 可以通过互联网参考分享照片

1 个答案:

答案 0 :(得分:1)

不,您的照片参考链接将被视为链接。您必须在共享之前在本地保存。临时下载然后尝试使用本地链接发送。