在使用Glide加載圖片時,若是出現「You must not call setTag() on a view Glide is targeting」的錯誤,八成是在使用ListView的時候出現的。簡單來講就是本來想簡化佈局文件的代碼,可是很不幸,這樣作卻會形成錯誤。android
若是出錯了,你的item八成是這個樣子:ide
<?xml version="1.0" encoding="utf-8"?> <ImageView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/iv" android:layout_width="wrap_content" android:layout_height="wrap_content" />
使用Glide不會出錯的item佈局:佈局
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content"> <ImageView android:id="@+id/iv" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </FrameLayout>
只要在ImageView的外層再加一層父佈局,就不會有問題了(LinearLayout,RelativeLayout等均可以)spa
若是追蹤錯誤來源,會找到這裏:.net
@Override public Request getRequest() { Object tag = getTag(); Request request = null; if (tag != null) { if (tag instanceof Request) { request = (Request) tag; } else { throw new IllegalArgumentException("You must not call setTag() on a view Glide is targeting"); } } return request; }
ImageView中的Tag須要強轉成Request。若是,item中只有ImageView,那麼在Adapter中:code
convertView.setTag(holder);
這句代碼等同於:xml
imageview.setTag(holder);
這樣的話,getTag()的對象就不爲Request,從而拋出異常。對象
那Glide爲啥要給ImageView設置Tag呢?緣由也很容易想到:
Glide給ImageView設置Tag的緣由是爲了防止圖片加載錯亂blog
在評論區中,一葉飄舟指出了:使用RecyclerView,能夠避免該問題,即便佈局文件中的代碼爲下面的代碼,也不會出錯圖片
<?xml version="1.0" encoding="utf-8"?> <ImageView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/iv" android:layout_width="wrap_content" android:layout_height="wrap_content" />
轉載請標明出處:http://blog.csdn.net/qq_26411333/article/details/52034444