无法使用Intent share Android共享图像

无法使用Intent share Android共享图像,android,facebook,android-intent,Android,Facebook,Android Intent,尝试使用意向共享将图像发送到Facebook和Whatsapp。但是,代码中似乎没有错误, 但由于无法在Whatsapp和Facebook上发送,它敬酒: 共享失败,请重试 这是我使用的代码,想知道是什么导致了这种情况 Intent shareIntent = new Intent(); public void shareIt(View view) { shareIntent.setAction(Intent.ACTION_SEND); shareIntent.setType("

尝试使用意向共享将图像发送到Facebook和Whatsapp。但是,代码中似乎没有错误, 但由于无法在Whatsapp和Facebook上发送,它敬酒:

共享失败,请重试

这是我使用的代码,想知道是什么导致了这种情况

Intent shareIntent = new Intent();
public void shareIt(View view)
{
    shareIntent.setAction(Intent.ACTION_SEND);
    shareIntent.setType("image/jpeg");
    shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///data/user/0/obx.com.futurister/files/newImage.jpg"));
    startActivity(Intent.createChooser(shareIntent, "Share image using"));
}

如果你的android版本是棉花糖,你应该打开Facebook和WhatsApp的存储权限