1

我想启用与 Android 中的所有应用程序共享图像 + 文本,这就是我使用 ACTION_SEND 的原因 .. 但我的问题是它不适用于 Facbook,尽管它可以与其他应用程序一起使用,但使用 Facebook 它只能获取没有文本的图像...任何解决方案?

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"));
4

0 回答 0