android – 使用Fresco库全屏显示GIF图像

我正在使用
Fresco库来全屏显示图像.如何使用该库全屏显示动画GIF图像?还有其他最佳解决方案吗? 最佳答案 您必须将动画GIF解码的依赖项添加到Gradle文件中:

implementation 'com.facebook.fresco:animated-gif:1.12.1'

然后,只需将图像加载到SimpleDraweeView:

mSimpleDraweeView.setController(Fresco.newDraweeControllerBuilder()
        .setAutoPlayAnimations(true)
        .setOldController(simpleDraweeView.getController())
        .setUri(yourGifUrl)
        .build());
点赞