Facebook分享错过EXTRAS

时间:2012-12-19 13:53:11

标签: android facebook

我正在做一个在社交网络中共享内容的应用程序。我使用这段代码:

final Intent intent = new Intent(Intent.ACTION_SEND);
 intent.setType("text/plain");
 intent.putExtra(Intent.EXTRA_SUBJECT, subject);
 intent.putExtra(Intent.EXTRA_TEXT, text);
 ctx.startActivity(Intent.createChooser(intent, ctx.getString(R.string.tit_share)));

但是当Facebook打开时,它不会显示EXTRA_TEXT。

有任何帮助吗?谢谢

1 个答案:

答案 0 :(得分:1)

这是针对Android的Facebook应用程序的问题。他们不支持这种分享。您必须在应用程序中使用facebook API。