Intent share = new Intent(Intent.ACTION_SEND); share.setType("image/jpeg"); share.putExtra(Intent.EXTRA_STREAM,Uri.parse(path)); startActivity(Intent.createChooser(share,"Share Image"));
这里路径在sdcard中指定图像的位置
但我不想保存图像…有可能..
但是如果来自网页,你直接解码为Bitmap,现在想分享它作为一个正确的图像,是的,你真的需要文件!