大家好,又见面了,我是你们的朋友全栈君。
项目中查看大图,并可以拖拽缩放,但是在加载图片等时候有些图片不能加载出来,报了一个错误: class com.bumptech.glide.load.engine.GlideException: Failed to load resource 原因:DragPhotoView图片在加载的时候进行了缩放,导致图片失帧,不能加载, 解决方法:必须是加载原图 //加载原图的操作 RequestOptions options = new RequestOptions().override(Target.SIZE_ORIGINAL, Target.SIZE_ORIGINAL); Glide.with(getBaseContext()) .load(url) .apply(options) .listener(new RequestListener<Drawable>() { @Override public boolean onLoadFailed(@Nullable GlideException e, Object model, Target<Drawable> target, boolean isFirstResource) { LogUtils.e("" + e.getMessage()); LogUtils.e("model》》》" + model); return false; } @Override public boolean onResourceReady(Drawable resource, Object model, Target<Drawable> target, DataSource dataSource, boolean isFirstResource) { return false; } }).into(dragPhotoView);
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/137083.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...