PictureSelector 打开相册后,点击图片进行预览,只有第一张图片模糊,左右滑动切换的图片正常

ct3nt3jp  于 3个月前  发布在  其他
关注(0)|答案(6)|浏览(66)

Current use version?

当前使用的版本是多少?
3.10.5

Will this problem occur in demo?

Demo能否复现这问题?
可以

Describe the problem or provide an error log?

描述问题或提供错误log?
描述问题
lsmepo6l

lsmepo6l1#

.isPreviewImage(true)

hgb9j2n6

hgb9j2n62#

当我去添加更多的图片时,打开相册,随便点击一个图片进行查看,第一张图片总是模糊,但左右滑动的图片是正常的。如果我的代码有什么问题,请指正,谢谢…

------------------ 原始邮件 ------------------ 发件人: "LuckSiege/PictureSelector" ***@***.***>; 发送时间: 2022年12月1日(星期四) 中午11:49 ***@***.***>; ***@***.******@***.***>; 主题: Re: [LuckSiege/PictureSelector] 打开相册后,点击图片进行预览,只有第一张图片模糊,左右滑动切换的图片正常 (Issue #2423) .isPreviewImage(true) — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: ***@***.***>

ccgok5k5

ccgok5k53#

遇到同样问题,这个解决了吗

vq8itlhq

vq8itlhq4#

你好,请问解决了吗

mwngjboj

mwngjboj5#

@Override
public void loadImage(Context context, ImageView imageView, String url, int maxWidth, int maxHeight) {
    if (!ActivityCompatHelper.assertValidRequest(context)) {
        return;
    }
    Glide.with(context)
            .load(url)
            .override(maxWidth, maxHeight)
            .into(imageView);
}

你肯定.override方法的宽高没有填写

相关问题