当前位置:   article > 正文

android Glide加载图片的基本使用_glid加载图片到background

glid加载图片到background

 

GitHub:https://github.com/bumptech/glide

 

添加依赖

 

 

  1. repositories {
  2. mavenCentral() // jcenter() works as well because it pulls from Maven Central
  3. }
  4. dependencies {
  5. compile 'com.github.bumptech.glide:glide:3.7.0'
  6. compile 'com.android.support:support-v4:19.1.0'
  7. }


使用方法很简单

 

 

 

  1. Glide.with(this)
  2. .load("http://imgsrc.baidu.com/forum/pic/item/0cb0e4039245d6887c41b02fadc27d1ed31b2443.jpg")//加载网址
  3. .placeholder(R.mipmap.ic_launcher)//加载图片
  4. .error(R.mipmap.ic_launcher)//加载错误图片
  5. .into(imageview);//加载控件


这也可以直接加载GIF图

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/482779
推荐阅读
相关标签
  

闽ICP备14008679号