Advertisement

Android开发:分享文字与多张图片至微信朋友圈

阅读量:

在实际操作过程中,遇到需要将九张图片分享至微信朋友圈的情况,通过网络进行大量查找,尝试了包括ShareSDK、百度社会化组件以及微信官方SDK等多种途径,但均未能成功解决该问题。直到在知乎上偶然看到一位高人提供的解决方案,最终得以实现需求,具体实现代码如下:

复制代码
 Intent intent = new Intent();

    
 		ComponentName comp = new ComponentName("com.tencent.mm",
    
 				"com.tencent.mm.ui.tools.ShareToTimeLineUI");
    
 		intent.setComponent(comp);
    
 		intent.setAction(Intent.ACTION_SEND_MULTIPLE);
    
 		intent.setType("image/*");
    
 		intent.putExtra("Kdescription", title);
    
 		ArrayList<Uri> imageUris = new ArrayList<Uri>();
    
 		for (File f : files) {
    
 			imageUris.add(Uri.fromFile(f));
    
 		}

全部评论 (0)

还没有任何评论哟~