我正在尝试使用共享意图,但我认为,它无法正常工作。在共享应用程序列表中,Facebook或Pinterest不会出现,但Gmail或云打印会出现。 我希望所有可能的应用程序都出现在那里。
这是我的代码。 感谢您的任何建议。
final Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "App name");
shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "");
startActivity(Intent.createChooser(shareIntent, "Share via..."));
答案 0 :(得分:3)
我不知道Pinterest,但对于Facebook而言,这似乎是一个已知问题,它不接受这些意图。
Facebook提供了它的SDK:https://github.com/facebook/facebook-android-sdk
我的猜测是Pinterest也是如此,因为他们也提供了他们的SDK:https://developers.pinterest.com/android/