React Native Android中的Gif支持

时间:2016-02-02 07:24:06

标签: android react-native gif

Android的React Native不支持GIF吗? 如果我想添加gif支持,我该怎么办?

1 个答案:

答案 0 :(得分:1)

默认情况下,android react本机应用程序不支持Gif图像。 您需要设置以下代码以显示gif图像。 代码: 打开你的android / app / build.gradle文件,在

的位置添加以下代码
open android/app/build.gradle add the following  code 

dependencies: { 
  ...
     // For animated GIF support
    compile 'com.facebook.fresco:animated-base-support:0.11.0'  
    // For WebP support, including animated WebP
    compile 'com.facebook.fresco:animated-gif:0.11.0'  
    compile 'com.facebook.fresco:animated-webp:0.11.0' 
    compile  'com.facebook.fresco:webpsupport:0.11.0'  

然后你需要再次捆绑应用程序,你可以用这两种方式显示gif图像。

   1-> <Image source={require('./../images/load.gif')}  style={{width: 100, height: 100 }}/>
   2-> <Image source={{uri: 'http://www.clicktorelease.com/code/gif/1.gif'}}  style={{width: 100, height:100 }}/>

我希望它对其他人有帮助,