Crash on using Glide library
问题 Loading different size of images into ImageView using Glide Library. But not sure why glide fails to handle the memory consumption, recycle and reuse it. Gradle: api 'com.github.bumptech.glide:glide:4.3.0' Usage: @BindingAdapter({"imageUrl"}) public static void imageUrl(ImageView view, String imageUrl) { try { if (imageUrl!=null) { Glide.with(view.getContext()).load(imageUrl).into(view); } } catch (Exception e) { e.printStackTrace(); } } Crash Log: 04-23 13:19:34.390 4758-4758/xx.xx.xxxE