在我的应用程序中,我尝试通过 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: "));
但这不起作用,都无法加载图片。是否可以通过互联网参考共享照片