标签:android google+分享 android google+share android goole+sdk
Android使用Google+分享功能
1.首先将<android-sdk-folder>/extras/google/google_play_services 导入到Eclipse中
如果没有这个工程首先更新到最新的ADT,然后打开Android SDK Manager进行下载
2.然后将其作为lib工程add到我们的工程上
3.主要的分享代码:
//google+分享 public void doGooglePlusShare(Activity mContext) { // 判断是否安装Google Service if (GooglePlayServicesUtil.isGooglePlayServicesAvailable(mContext) == ConnectionResult.SUCCESS) { Intent shareIntent = new PlusShare.Builder(mContext).setType("text/plain") .setText("test share").setContentUrl(Uri.parse("www.baidu.com")).getIntent(); mContext.startActivityForResult(shareIntent, 0); }else{ Toast.makeText(mContext, "Please install Google Service", 0).show(); } }
本文出自 “小鸟学C变大鹏” 博客,请务必保留此出处http://vincenttung.blog.51cto.com/6249439/1587682
标签:android google+分享 android google+share android goole+sdk
原文地址:http://vincenttung.blog.51cto.com/6249439/1587682