android上传照片使用共享意图错误

时间:2011-09-20 16:39:25

标签: android

我正在尝试允许用户通过共享意图上传照片。 但我得到一个例外: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"));
}

0 个答案:

没有答案