0

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

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

4

1 回答 1

1

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

于 2013-09-23T11:29:24.883 回答