I use Glide library inner custom adapter view in my apps. But I have Error :
\"You must not call setTag() on a view Glide is targeting\"
T
Glide use setTag(Object) method internally. So remove all calls of setTag(Object) from your target view. ie ImageView
Glide
setTag(Object)
ImageView
If you really required to use setTag method on your view, you can use setTag(int,Object) method instead.
setTag
setTag(int,Object)