首页 > 其他 > 详细

ListView或GridView的Adapter使用Glide加载图片异常

时间:2016-12-05 22:59:10      阅读:628      评论:0      收藏:0      [点我收藏+]

报错信息为:You must not call setTag() on a view Glide is targeting

 

原因就是使用setTag后导致Glide强制转换中将ImageView类型不能判断为Request类型所致。

在Glide源码中可追溯:

 if (tag instanceof Request) {
            request = (Request) tag;
        } else {
            throw new IllegalArgumentException("You must not call setTag() on a view Glide is targeting");
        }

 

ListView或GridView的Adapter使用Glide加载图片异常

原文:http://www.cnblogs.com/zzq-include/p/6135312.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!