2

我正在尝试实现从我的 Android 应用程序发布到多个社交网络(Facebook、Twitter ...)的可能性,而不是一一通过 API,我想知道是否存在允许我这样做的免费库只需一个链接和简单的调用。

我搜索过旧问题,但像 SocialLib 这样的解决方案已经完全从互联网上消失了,而其他解决方案则从 libs 转向付费服务。

4

1 回答 1

0

Android 中的 Share api 怎么样:

//create the send intent
Intent shareIntent = Intent(android.content.Intent.ACTION_SEND);

//set the type
shareIntent.setType("text/plain");

//add a subject
shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,  "Insert Subject Here");

//build the body of the message to be shared
String shareMessage = "Insert message body here.";

//add the message
shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareMessage);

//start the chooser for sharing
startActivity(Intent.createChooser(shareIntent, "Insert share chooser title here"));

你会得到这个弹出窗口:http: //4.bp.blogspot.com/-gn8nnLC70Xc/TrFoY1GxKtI/AAAAAAAAAEI/6UDPHv-Zxv8/s1600/sharelist.png

于 2012-05-14T13:45:31.750 回答