我正试图实现从我的Android应用程序发布到多个社交网络(Facebook,Twitter ...)的可能性,而不是逐个浏览API我想知道是否存在允许的免费库我只用一个链接和简单的电话来做。
我搜索过旧的问题,但像SocialLib这样的解决方案完全没有从互联网上消失,而其他解决方案则从libs转到付费服务。
答案 0 :(得分: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