ACTION_SEND不会将带有图像的文本发送到Facebook

时间:2013-06-26 12:34:35

标签: android sharing

我想为Android中的所有应用程序分享图片+文字,这就是我使用ACTION_SEND的原因..但我的问题是它不能与Facbook一起使用,虽然它与其他应用程序一起使用但是只有脸书它才能获得图像没有文字...任何解决方案?

Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri screenshotUri = Uri.parse("file:///sdcard/image.jpg");
sharingIntent.setType("image/*");
sharingIntent.putExtra(Intent.EXTRA_TEXT, "Body text of the new
status");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
startActivity(Intent.createChooser(sharingIntent, "Share image
using"));

0 个答案:

没有答案