当前位置:   article > 正文

Android:QQ分享、微信分享、朋友圈分享(不使用第三方SDK)_android qq分享给好友

android qq分享给好友

转自:http://blog.csdn.net/HMYANG314/article/details/41939845

一、分享到QQ

[java]  view plain  copy
  1. /** 
  2.      * 分享到QQ好友 
  3.      *  
  4.      */  
  5.     private void shareToQQFriend() {  
  6.         Intent intent = new Intent();  
  7.         ComponentName componentName = new ComponentName("com.tencent.mobileqq""com.tencent.mobileqq.activity.JumpActivity");  
  8.         intent.setComponent(componentName);  
  9.         intent.setAction(Intent.ACTION_SEND);  
  10.         intent.setType("text/*");  
  11.         intent.putExtra(Intent.EXTRA_TEXT, "这是分享内容");  
  12.         startActivity(intent);  
  13.     }  

二、分享到微信朋友

[java]  view plain  copy
  1. /** 
  2.      * 分享信息到朋友 
  3.      *  
  4.      */  
  5.     private void shareToWxFriend() {  
  6.         Intent intent = new Intent();  
  7.         ComponentName componentName = new ComponentName("com.tencent.mm""com.tencent.mm.ui.tools.ShareImgUI");  
  8.         intent.setComponent(componentName);  
  9.         intent.setAction(Intent.ACTION_SEND);  
  10.         intent.setType("text/*");  
  11.         intent.putExtra(Intent.EXTRA_TEXT, "这是分享内容");  
  12.         intent.putExtra(Intent.EXTRA_STREAM, "http://www.weixin.com");  
  13.         startActivity(intent);  
  14.     }  

三、分享到朋友圈

[java]  view plain  copy
  1. /** 
  2.  * 分享信息到朋友圈 
  3.  *  
  4.  * @param file 
  5.  *            ,假如图片的路径为path,那么file = new File(path); 
  6.  */  
  7. private void shareToTimeLine(File file) {  
  8.     Intent intent = new Intent();  
  9.     ComponentName componentName = new ComponentName("com.tencent.mm""com.tencent.mm.ui.tools.ShareToTimeLineUI");  
  10.     intent.setComponent(componentName);  
  11.       
  12.     intent.setAction(Intent.ACTION_SEND);  
  13.     intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));  
  14.       
  15.     // intent.setAction(android.content.Intent.ACTION_SEND_MULTIPLE);  
  16.     // ArrayList<Uri> uris = new ArrayList<Uri>();  
  17.     // for (int i = 0; i < images.size(); i++) {  
  18.     // Uri data = Uri.fromFile(new File(thumbPaths.get(i)));  
  19.     // uris.add(data);  
  20.     // }  
  21.     // intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);  
  22.       
  23.     intent.setType("image/*");  
  24.       
  25.     startActivity(intent);  
  26. }  

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/292882?site
推荐阅读
相关标签
  

闽ICP备14008679号