0

我希望用户单击按钮时共享的图像

该图像是他使用绘画等许多功能制作的图像。当他单击共享按钮时,我希望共享意图“通过共享”。出现,让他选择他想要分享的地方

我找到了这段代码,但我从(路径)得到一个错误

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"));

我怎样才能做到这一点?

4

1 回答 1

0

你在变量路径中放了什么?

路径是您之前保存位图的文件的路径(SD 卡或内部应用程序存储)。

图片一定要先保存是对的,但是如果现在不保存,怎么填充path变量呢?

于 2012-07-30T18:51:25.323 回答