I use glide to load the same gif in my app project and a demo project, it works in the demo but doesn't work in my app project. Did anyone meet the same problem?
glide version:4.9.0
Glide.with(this).asGif().load(gifUrl).into(imageView);
I use glide to load the same gif in my app project and a demo project, it works in the demo but doesn't work in my app project. Did anyone meet the same problem?
glide version:4.9.0
Glide.with(this).asGif().load(gifUrl).into(imageView);
Try this
Glide.with(yourContext).asGif().load(R.raw.image_gif).into(yourImageView);
Try this one
Provide internet permission in AndroidMenifest.xml file
<uses-permission android:name="android.permission.INTERNET"/>
And glide module
Glide.with(context)
.load(gifUrl)
.into(yourImageView)