android 多图分享到微信,Android应用开发之Android 关于微信分享图片过大失败的解决方案...

本文将带你了解Android应用开发之Android 关于微信分享图片过大失败的解决方案,希望本文对大家学Android有所帮助。

Android   关于微信分享图片过大失败的解决方案。这是因为微信对缩略图做了限制,最大不超过32K。

所以可以先通过图片加载工具获取bitmap,然后进行压缩,压缩方法如下:

//压缩图片 public Bitmap createBitmapThumbnail(Bitmap bitMap)   {  int width = bitMap.getWidth();  int height =   bitMap.getHeight();  // 设置想要的大小  int newWidth = 99;  int newHeight =   99;  // 计算缩放比例  float   scaleWidth = ((float) newWidth) / width;  float scaleHeight =   ((float) newHeight) / height;  // 取得想要缩放的matrix参数  Matrix   matrix = new Matrix();  matrix.postScale(scaleWidth,   scaleHeight);  // 得到新的图片  Bitmap newBitMap = Bitmap.createBitmap(bitMap, 0,   0, width, height, matrix, true);  return newBitMap; }

然后封装成UMusic对象进行音频分享:

10final UMusic music = new   UMusic(detail.path);//音频媒体对象  UMImage umImage = new UMImage(mActivity, bitmap);//将缩略图封装成UMImage对象,在设置给音频媒体对象music.setTitle(detail.name);music.setThumb(umImage); new   ShareAction(mActivity).setPlatform(media).setCallback(umShareListener)//设置回调 .withTitle(detail.name)//标题 .withText(getString(R.string.share_text_pre)   + detail.name + getString(R.string.share_text_next))//描述信息 .withMedia(uMusic)//媒体对象 .withTargetUrl(url)//目标地址,就是点击分享要跳转的页面 .share();

分享视频:

String url = postShareContent(mainUrl,   detail);//url点击跳转页面地址  UMVideo   image = new   UMVideo(url);  image.setTitle(detail.name);  image.setThumb(detail.coverpath);//这里如果图片过大也应该和音频一样,  Log.LOG   = false;  new   ShareAction(mActivity).setPlatform(media).setCallback(umShareListener) .withTitle(detail.name) .withText(getString(R.string.share_text_pre)   + detail.name + getString(R.string.share_text_next)) .withMedia(image)//   .withTargetUrl(url)//地址封装在UMVideo中,所以不必调用此方法 .share();  LoggerUtils.d(TAG + "\n" +   String.format(" 分享地址 :%s \n 分享标题 :%s \n 分享图标 :%s \n 分享音频 :%s", url,detail.name,detail.coverpath,detail.path));

分享图片:

UMImage image = new   UMImage(mActivity,   detail.path);  image.setTitle(detail.name);  image.setThumb(detail.coverpath);   String   url = postShareContent(mainUrl, detail);   Log.LOG =   false; //  Config.IsToastTip = true;   new   ShareAction(mActivity).setPlatform(media).setCallback(umShareListener) .withTitle(detail.name) .withText(getString(R.string.share_text_pre)   + detail.name + getString(R.string.share_text_next)) .withMedia(image) .withTargetUrl(url) .share();

最后接口回调类:

/**  * 分享回调监听  */ private UMShareListener umShareListener =   new UMShareListener() {  @Override  public void   onResult(SHARE_MEDIA platform) {LoggerUtils.d("share   Result");  }   @Override  public void   onError(SHARE_MEDIA platform, Throwable t) {if (t != null)   { LoggerUtils.d(t.getMessage());}  }   @Override  public   void onCancel(SHARE_MEDIA platform) { LoggerUtils.d("share   cancel");  } };

本文由职坐标整理并发布,希望对同学们有所帮助。了解更多详情请关注职坐标移动开发之Android频道!

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值