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());
标签:android,gif,fresco 来源: https://codeday.me/bug/20190705/1387166.html