我想通过我的应用在 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 中分享。我怎样才能得到只有脸书?谁能帮我?