私のアプリでは、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: "));
しかし、これは機能しません。すべて画像を読み込めません。インターネット参照を介して写真を共有するかどうかは可能です