我希望用户单击按钮时共享的图像
该图像是他使用绘画等许多功能制作的图像。当他单击共享按钮时,我希望共享意图“通过共享”。出现,让他选择他想要分享的地方
我找到了这段代码,但我从(路径)得到一个错误
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri screenshotUri = Uri.parse(path);
sharingIntent.setType("image/png");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
startActivity(Intent.createChooser(sharingIntent, "Share image using"));
我怎样才能做到这一点?