报错信息为:You must not call setTag() on a view Glide is targeting 原因就是View使用setTag后导致Glide之前请求的标记被清除,强制转换过程中不能将你给定的类型判断为Request类型所致. 在Glide源码中可追溯: if (tag instanceof Request) { request = (Request) tag; } else { throw new IllegalArgumentException("You mus…
报错信息为:You must not call setTag() on a view Glide is targeting 原因就是View使用setTag后导致Glide之前请求的标记被清除,强制转换过程中不能将你给定的类型判断为Request类型所致. 在Glide源码中可追溯: if (tag instanceof Request) { request = (Request) tag; } else { throw new IllegalArgumentException("You mus…