Android接入Google+分享功能

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

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。