首先,这是我的第一个应用程序,我真的很难用它。所以请放弃我的代码,因为它可能不适合你的眼睛:(我想在任何社交网站特别是facebook上发布得分,最高分。但是,在下面的代码中,它只打开facebook并让一名球员给予状态。它不会发布球员的最高分。任何帮助都将受到高度赞赏。
P.S。我已经阅读过Open Graph并且很难理解它。直到现在。很好:D TIA:)
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT, "My new top score is "+ ta.getText() + "!!!"); // this should appear to in the post. But IT DOESN'T !
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "My Score");
try {
startActivity(Intent.createChooser(shareIntent, "Share to..."));
} catch (android.content.ActivityNotFoundException ex) {
Toast.makeText(getApplicationContext(),"No application installed.",Toast.LENGTH_SHORT).show();
}