CircleImageView icon indicating copy to clipboard operation
CircleImageView copied to clipboard

Load gif

Open hujuny opened this issue 4 years ago • 1 comments

When I use glide to load a gif image and use circleImageView to add rounded corners, CircleImageView loads the gif image and only loads a certain frame of the gif image.

hujuny avatar Mar 25 '21 09:03 hujuny

What you observed is the expected behavior of the current release. I merged (experimental) support for GIF files a while ago but never got around to properly test and release it. If you want to give it shot, you can switch to a master-Build using Jitpack:

repositories {
    ...
    maven { url 'https://jitpack.io' }
}

dependencies {
    ...
    //implementation 'de.hdodenhof:circleimageview:3.1.0'
    implementation 'com.github.hdodenhof:CircleImageView:master-SNAPSHOT'    
}

Let me know how that works for you.

hdodenhof avatar Mar 28 '21 14:03 hdodenhof