[Android] 微信分享多张图片。

1原理:

微信原生是不支持多图片分享的,但是Android原生是支持的,由于微信实现了Android原生的intentfilter,所以可以通过原生的调用分享。

2代码:

	public static void shareImages(Context context, Uri[] uri) {
		Intent shareIntent = new Intent();
		// 1 Finals 2016-11-2 调用系统分享
		shareIntent.setAction(Intent.ACTION_SEND_MULTIPLE);
		shareIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

		// 2 Finals 2016-11-2 添加图片数组
		ArrayList<Uri> imageUris = new ArrayList<Uri>();
		for (int i = 0; i < uri.length; i++) {
			imageUris.add(uri[i]);
		}
		shareIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, imageUris);
		shareIntent.setType("image/*");

		// 3 Finals 2016-11-2 指定选择微信。
		ComponentName mComponentName = new ComponentName("com.tencent.mm", "com.tencent.mm.ui.tools.ShareToTimeLineUI");
		shareIntent.setComponent(mComponentName);

		// 4 Finals 2016-11-2 开始分享。
		context.startActivity(Intent.createChooser(shareIntent, "分享图片"));
	}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值