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
Use view.setTage(int, object); and view.getTag(int);
As written by Thu Thu, you can simply reference an id of any existing View. For instance, suppose you want to set tag to an ImageView:
Thu Thu
id
View
ImageView
image_view.setTag(R.id.image_view, 100) if (image_view.getTag(R.id.image_view) == 100) ...