本文主要是介绍安卓Kotlin AndroidStudio 使用Glide在ImageView加载GIF图片,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
- 在
build.gradle
添加
apply plugin: 'kotlin-kapt'repositories {mavenCentral()maven { url 'https://maven.google.com' }
}dependencies {compile 'com.github.bumptech.glide:glide:4.11.0'kapt 'com.github.bumptech.glide:compiler:4.11.0'
}
- 在代码中使用
Glide.with(fragment).load(myUrl).into(imageView);
这篇关于安卓Kotlin AndroidStudio 使用Glide在ImageView加载GIF图片的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!