如何在我的应用程序中分享Facebook中的文本

时间:2012-10-17 14:50:15

标签: android facebook

我想从我的应用程序在Facebook上分享文本。我搜索过并找到了以下代码

Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
        shareIntent.setType("text/plain");
        shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Content to share");
        PackageManager pm = getPackageManager();
        activityList = pm.queryIntentActivities(shareIntent, 0); 

这为我提供了支持ACTION_SEND的所有应用程序列表,我只想在facebook中分享。我怎么才能得到Facebook?任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

ACTION_SEND不能与Facebook合作,因为Matt已经评论过了。我刚刚发布了一个关于此问题的问题

facebook's take on handling share intents - how to deal with it

所以即使你设法将ACTION_SEND限制为只有facebook - 我怀疑这是可能的 - 它也没有帮助。所以最有可能使用facebook android sdk

https://github.com/facebook/facebook-android-sdk/

是你的方式。