我正在尝试允许用户通过共享意图上传照片。 但我得到一个例外:tag scaleimagetask.run没有内容提供者/mnt/sdcard/pic.png 是不是要在清单上添加东西或做其他事情?
我的代码:
{
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri phototUri = Uri.parse(path);
sharingIntent.setData(photootUri);
sharingIntent.setType("image/png");
sharingIntent.putExtra(Intent.EXTRA_STREAM, photootUri);
getContext().startActivity(Intent.createChooser(sharingIntent, "Share image using"));
}