我想在 Facebook Wall 上发布一些文字。
我看过“Facebook Developers”的教程,但他们建议有一个登录按钮和另一个发布提要的按钮。不幸的是,这不是我想要的。
我想要的是单击我制作的按钮并直接在 Facebook Wall 上发布,而无需通过登录按钮。
谢谢你的帮助!
我想在 Facebook Wall 上发布一些文字。
我看过“Facebook Developers”的教程,但他们建议有一个登录按钮和另一个发布提要的按钮。不幸的是,这不是我想要的。
我想要的是单击我制作的按钮并直接在 Facebook Wall 上发布,而无需通过登录按钮。
谢谢你的帮助!
您可以为此使用共享意图。
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
startActivity(sendIntent);