码迷,mamicode.com
首页 > 其他好文 > 详细

Glide源码解析

时间:2017-07-07 16:39:47      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:net   ext   for   http   方法   asd   图片   logs   div   

基本使用方法:

Glide.with(this)
     .asDrawable()
     .load("http://i6.topit.me/6/5d/45/1131907198420455d6o.jpg")
     .apply(fitCenterTransform(this))
     .apply(placeholderOf(R.drawable.skyblue_logo_wechatfavorite_checked))
     .into(imageView);

  Glide.with()方法用于创建一个加载图片的实例。with()方法可以接收Context、Activity或者Fragment类型的参数。

  load()方法,这个方法用于指定待加载的图片资源。

  into()方法,让图片显示在ImageView

  placeholder()方法,占位图

源码分析:

  见郭霖的博客:http://blog.csdn.net/guolin_blog/article/details/53939176

Glide源码解析

标签:net   ext   for   http   方法   asd   图片   logs   div   

原文地址:http://www.cnblogs.com/yl-saber/p/7132653.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!