android分享功能的实现(分享到微博空间等)

				//Intent intent = new Intent(Intent.ACTION_SEND);
				// intent.putExtra(Intent.EXTRA_EMAIL, "[email protected]");
				intent.putExtra(Intent.EXTRA_TEXT, "图片分享测试……");
				intent.putExtra(Intent.EXTRA_SUBJECT, "好友推荐");
				
//				intent.setType("audio/mp3");
//				intent.setType("text/plain");
				intent.setType("image/*");
				File file = new File("/sdcard/qd_photos/qiaodan.jpg");
				
				Uri uri = Uri.fromFile(file);
				intent.putExtra(Intent.EXTRA_STREAM,uri);
				
				startActivity(Intent.createChooser(intent, getTitle()));
注:改代码实现了简单的分享一段说说和一张图片到空间和微博。
 

猜你喜欢

转载自quding0308.iteye.com/blog/1715127