收藏
回答

微信7.0.20, android11,是不支持imageData分享图片了吗

框架类型 问题类型 操作系统 操作系统版本 手机型号 微信版本
小程序 Bug Android android11 小米 redmik30 pro 7.0.20

https://developers.weixin.qq.com/doc/oplatform/Mobile_App/Share_and_Favorites/Android.html

图片分享使用Bitmap分享也提示需要使用FileProvider,是android11,微信7.0.12后都只能使用setImagePath方法吗

private static boolean sharePicture(String filePath,
                                        Bitmap bmp,
                                        int scene,
                                        String appId) {
        WXImageObject imageObject = new WXImageObject(bmp);
//        imageObject.setImagePath(filePath);

        Bitmap thumbBmp; // thumb is always created within this method, so recycle is required
        if (bmp.getWidth() == THUMB_SIZE && bmp.getHeight() == THUMB_SIZE) {
            thumbBmp = bmp;
        } else {
            thumbBmp = Bitmap.createScaledBitmap(bmp, THUMB_SIZE, THUMB_SIZE, true);
            bmp.recycle();
        }
        return share(imageObject, null, thumbBmp, null, scene, appId);
    }


回答关注问题邀请回答
收藏

6 个回答

  • TreeNewBee
    TreeNewBee
    2020-11-26

    同问

    2020-11-26
    有用
    回复
  • 芒果
    芒果
    2020-11-23

    同问

    2020-11-23
    有用
    回复
  • stardust
    stardust
    2020-11-11

    加一

    2020-11-11
    有用
    回复
  • Tang Binfeng
    Tang Binfeng
    2020-11-11

    我们项目在目前新出的一加OnePlusKB2000 android11系统也出现这个问题,望答复~

    2020-11-11
    有用
    回复
  • 秀一
    秀一
    2020-11-10

    同问

    2020-11-10
    有用
    回复
  •        
           
    2020-11-10

    怎么解决分享bitmap

    2020-11-10
    有用
    回复
登录 后发表内容
问题标签