我在Eclipse Android中只有一个类似Mastermind的游戏应用程序。我现在想要的是让用户在他/她的Facebook帐户上发布他/她的分数。在AlertDialog构建器中,当用户选择“发布到我的Facebook”按钮时,它应该能够真正做到。实际代码非常受欢迎!
干杯
答案 0 :(得分:6)
如果您想特别使用Facebook
,则应使用适用于Android的FacebookSDK。
但据我所知,这可能会给你带来很多问题,而我建议你制作一个Share Intent
并让用户选择在哪里得分:
Intent shareIntent=new Intent(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT,"Your score and Some extra text");
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "The title");
startActivity(Intent.createChooser(shareIntent, "Share..."));
这将允许用户从他的手机上安装的更多应用程序中进行选择,例如Facebook,Twitter等。