当前位置: 代码迷 >> Android >> android分享效能的实现(分享到微博空间等)
  详细解决方案

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

热度:26   发布时间:2016-05-01 12:58:30.0
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()));
注:改代码实现了简单的分享一段说说和一张图片到空间和微博。
?
  相关解决方案