欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ReactNative GIF

程序员文章站 2022-03-24 19:05:15
...

默认使用GIF图都只会显示第一帧的静态画面。

在RN中使用GIF,需要在build.gradle中添加:

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

在安卓的XML中使用,需要在build.gradle中添加:

implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.17'

然后这样使用:

<pl.droidsonroids.gif.GifImageView
   android:layout_width="100dp"
   android:layout_height="100dp"
   android:src="@drawable/gif" />

添加完都记得sync一下~