友盟分享小问题

来源:互联网 发布:淘宝店铺开店教程 编辑:程序博客网 时间:2024/06/05 02:27
 // 店家logo,若无店家LOGO展示默认图标
        UMImage urlImage;
        if (!TextUtils.isEmpty(mShopIcon)) {
            urlImage = new UMImage(this, mShopIcon);
        } else {
            urlImage = new UMImage(this, R.drawable.share_default_logo);
        }


        UMWeb web = new UMWeb(mLink);
        web.setTitle(mShopName);
        web.setDescription(shareDescription);
        web.setThumb(urlImage);

        mShareAction.withMedia(web);



当mShopIcon不是一个图片地址时,微信能分享成功,但是图像是应用的默认图像。QQ点击不能分享。

原创粉丝点击