本文主要是介绍java.lang.IllegalArgumentException: You must not call setTag() on a view Glide is targeting,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Glide使用问题
Glide setTag崩溃问题
java.lang.IllegalArgumentException: You must not call setTag() on a view Glide is targeting
- 原因:
and an Adapter which is using the usual ViewHolder pattern, i.e. inflating the view from resource (above) and setTag(vh);, now Glide wants to do the same when loading the image.
- 解决方案:
There could easily be a way to prevent conflicts, by allowing the ViewTarget users to set an ID to use with setTag(int, Object), even if it’s just a static method on ViewTarget (default beingView.NO_ID -> setTag(Object)).
如何为Glide设置Tag
java.lang.IllegalArgumentException: The key must be an application-specific resource id.
原因:
官方的api文档中提到:“ The specified key should be an id declared in the resources of the application to ensure it is unique (see the ID resource type). Keys identified as belonging to the Android framework or not associated with any package will cause an IllegalArgumentExceptionto be thrown.”所以抛出IllegalArgumentException的原因就在于key不唯一,那么如何保证这种唯一性呢?定义一个final类型的int变量和硬编码一个值的方式都是行不通的。
解决
setTag是android的view类中很有用的一个方法,可以用它来给空间附加一些信息,在很多场合下都得到妙用。
setTag(Object tag)方法比较简单,这里主要谈一谈带两个参数的setTag方法。
如果只需要设置一个tag,那么直接调用setTag(Object tag)方法就可以轻松搞定,如果一定需要使用多个tag绑定,那么需要先在res/values/strings.xml中添加
使用的时候写成
imageView.setTag(R.id.tag_first, “Hello”);
imageView.setTag(R.id.tag_second, “Success”);
就可以了
取值的时候
String tag_first=v.getTag(R.id.tag_first).tostring();
就能取到值了!
转自:https://blog.csdn.net/zhao0829wang/article/details/49277949
这篇关于java.lang.IllegalArgumentException: You must not call setTag() on a view Glide is targeting的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!