尝试使用Intent Share将图像发送到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"));
}
答案 0 :(得分:0)
如果你的Android版本是marshmallow,你应该打开Facebook和WhatsApp的存储许可。