I use Glide to download thumbnails from a video, but it does not seem to work in my application. For some reason, ImageView is just empty.
Glide.with(context) .load(url) .asBitmap() .thumbnail(0.1f) .diskCacheStrategy(DiskCacheStrategy.ALL) .into(target);
I added a listener so that I can figure out what is wrong, but the exception thrown is null.
I tried using ThumbnailUtils using the same URL, because I thought there might be something wrong with it, but the thumbnails load fine.
Does anyone experience the same thing? I am using Nexus 7 (6.0.1)
android android-glide
kishidp
source share