我正在使用以下代码。当我选择 Twitter 应用程序时,它在推文对话框中显示“我的蛇游戏得分为 2000”文本,但在 Facebook 帖子对话框中不显示文本
Intent shareIntent=new Intent(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT,"My score is with snake game is 2000");
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "The title");
startActivity(Intent.createChooser(shareIntent, "Share..."));