码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2016-12-05 23:01:56      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:信息   log   new   not   request   targeting   else   style   imageview   

报错信息为: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加载图片异常

标签:信息   log   new   not   request   targeting   else   style   imageview   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!