Android - 无法使用ACTION_SEND在Facebook上共享图像

时间:2014-03-10 12:17:57

标签: android android-sharing

我可以从各种帖子中了解到,无法通过意图共享在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:"));

This is how it looks when sharing from Twitter

0 个答案:

没有答案