我可以从各种帖子中了解到,无法通过意图共享在Facebook上共享图像和文本数据。但Twitter可以通过图像中显示的意图共享在Facebook中共享缩略图和文本。你可以对此发表评论,并建议一种通过意图在Facebook上分享图像和文本的方法。
提前致谢。
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/*");
intent.putExtra(Intent.EXTRA_TEXT, viewProject.getShareLink());
intent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(intent, "compatible apps:"));