0

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);
Zoe
  • 27,060
  • 21
  • 118
  • 148

2 Answers2

0

Try this

Glide.with(yourContext).asGif().load(R.raw.image_gif).into(yourImageView);
0

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)