Glide:You must pass in a non null View

在自定义Dialog的时候,用Glide加载图片时报了一下异常
Caused by: java.lang.IllegalArgumentException: You must pass in a non null View
原因是Dialog还未显示出来,而ImageView为null,所以报了这个异常
解决的方法是先把Dialog显示出来,mDialog.show();在去用Glide加载图片。

你可能感兴趣的:(Glide:You must pass in a non null View)