glide加载图片错误,提示view为空。但是我已经把view实例化了。求解决

/*InfoWindow中展示的自定义view*/
LayoutInflater inflater = LayoutInflater.from(getApplicationContext());
View view = inflater.inflate(R.layout.info_window, mapView);
ImageView img = (ImageView) view.findViewById(R.id.image_view);
** Glide.with(MainActivity.this).load(picture.getImgId()).asBitmap().centerCrop().into(img);**
LatLng viewLatLng = new LatLng(picture.getLat(), picture.getLng());//显示InfoWindow的坐标点
InfoWindow mInfoWindow = new InfoWindow(view, viewLatLng, -47);//传入view,地理坐标,y轴偏移量
mBaiduMap.showInfoWindow(mInfoWindow);//显示InfoWindow

图片说明

自己翻译一下,你没有传进去View的实例,也就是说,你没有给图片显示的地方