How to play GIF in android

后端 未结 8 827
死守一世寂寞
死守一世寂寞 2020-11-30 05:08

Hello stackoverflow I\'m trying to develop an android application to play my own GIF, here is the code snippet

MainActivity.java

8条回答
  •  日久生厌
    2020-11-30 05:24

    add this to your dependencies (build.gradle)

     allprojects {
        repositories {
            mavenCentral()
        }
    }
    dependencies {
        implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.15'
    }
    

    and use this in xml to show your gif

     
    

    More info at: https://github.com/koral--/android-gif-drawable

提交回复
热议问题