Picasso 英文意思国外一个很有名的画家毕加索的名字,国外项目取名还是很有意思的!

从github新下载的picasso项目有依赖其他第三方开源项目okhttp和okio,这两个项目也是相当经典的,据说okhttp里网络请求的代码处理逻辑已经加入到android4点几的源码中了。

picasso也提供了封装好了的jar包可以使用,这样就不需要导入okhttp和okio项目了,但是看jar包里的OkHttpDownloader这个类还是引用了okhttp里的对象,可是在jar包里并没找到,不知道为什么~谁能解释下啊?

Picasso使用的方法汇总:

Picasso.with(context).load("http://i.imgur.com/DvpvklR.png").into(imageView);
Picasso.with(context).load(url).into(view);
Picasso.with(context).load(url) .resize(50, 50).centerCrop().into(imageView)
//这里的placeholder将resource传入通过getResource.getDrawable取资源,所以可以是张图片也可以是color id
Picasso.with(context).load(url).placeholder(R.drawable.user_placeholder).error(R.drawable.user_placeholder_error).into(imageView);

Picasso.with(context).load(R.drawable.landing_screen).into(imageView1);
Picasso.with(context).load("file:///android_asset/DvpvklR.png").into(imageView2);
Picasso.with(context).load(new File(...)).into(imageView3);
//这里显示notification的图片
Picasso.with(activity).load(Data.URLS[new Random().nextInt(Data.URLS.length)]).resizeDimen(R.dimen.notification_icon_width_height,    R.dimen.notification_icon_width_height).into(remoteViews, R.id.photo, NOTIFICATION_ID, notification);
//这里是通过设置tag标签,就是当前传过来的context,这样就可以根据这个context tag来pause和resume显示了
Picasso.with(context).load(url).placeholder(R.drawable.placeholder).error(R.drawable.error).fit().tag(context).into(view);
//监听onScrollStateChanged的时候调用执行
picasso.resumeTag(context);
picasso.pauseTag(context);

Picasso.with(context).load(contactUri).placeholder(R.drawable.contact_picture_placeholder).tag(context).into(holder.icon);
//这个onpause方法里的这段代码还是很有意思的
@Override protected void onPause() {
    super.onPause();
    if (isFinishing()) {
      // Always cancel the request here, this is safe to call even if the image has been loaded.
      // This ensures that the anonymous callback we have does not prevent the activity from
      // being garbage collected. It also prevents our callback from getting invoked even after the
      // activity has finished.
      Picasso.with(this).cancelRequest(imageView);
    }
  }
// Trigger the download of the URL asynchronously into the image view.
    Picasso.with(context)
        .load(url)
        .placeholder(R.drawable.placeholder)
        .error(R.drawable.error)
        .resizeDimen(R.dimen.list_detail_image_size, R.dimen.list_detail_image_size)
        .centerInside()
        .tag(context)
        .into(holder.image);
//Picasso.with使用的是单例模式
Picasso.with(this).cancelTag(this);

然后呢,Picasso还提供了debug的标示,调用picasso的setIndicatorsEnabled方法,true是debug模式,跟踪代码其实就是在最后生成的PicassoDrawable类的ondraw里绘制了个左上角小三角,根据

public enum LoadedFrom {
    MEMORY(Color.GREEN),
    DISK(Color.BLUE),
    NETWORK(Color.RED);

枚举里的不同值标示不同加载来源,这对分析图片加载有好处。

另外链接个分析picasso源码不错的博客地址http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2014/0731/1639.html

不要感谢我哦!

Picasso真心是个很强大的图片加载框架,之前用过universal-Image-Loader图片加载框架也挺不错的

开源的力量很强大啊☻

原文链接:http://blog.csdn.net/fancylovejava/article/details/43760119

最新文章

  1. java复杂枚举
  2. VIJOS P1037搭建双塔[DP]
  3. NYOJ题目611练练
  4. 如何查看 oracle 官方文档
  5. Eigenvectors and eigenvalues
  6. PAT 解题报告 1048. Find Coins (25)
  7. .net平台的RSA实现以及与Delphi之间的互操作性
  8. Java文件File操作一:文件的创建和删除
  9. 不用预计算切向空间的Normal mapping
  10. java 自动装箱、自动拆箱
  11. Ubuntu Gnome下如何改动应用的图标icon
  12. 在VirtualBox 虚拟机中安装CentOS7 64位实验基础系统
  13. 读Kafka Consumer源码
  14. RandomAccess接口的使用
  15. springmvc+mybatis+mysql 数据库插入中文是乱码
  16. 如何提升JavaScript的任务效率?学会后教给你同事
  17. How to install Niresh Mavericks on PC
  18. APPicon的生成
  19. Wireshark win7 没有找到接口;找不到接口
  20. js实现页面锚点定位动画滚动

热门文章

  1. [系统运维]Supervisord安装和启动程序
  2. 【Netty源码学习】DefaultChannelPipeline(三)
  3. iOS集合视图单元格高亮和选中的区别
  4. 详解EBS接口开发之库存事务处理采购接收--补充
  5. 应付模块的R12 TRACE 和 FND Debug 文件 / FND 日志 调试
  6. 剑指Offer--排序算法小结
  7. SSH深度历险(九) Struts2+DWZ+Uploadify实现多文件(文件和图片等等)上传
  8. RMI方式Ehcache集群的源码分析
  9. JAVA之旅(二十六)——装饰设计模式,继承和装饰的区别,LineNumberReader,自定义LineNumberReader,字节流读取操作,I/O复制图片
  10. Dynamics CRM2011/2013 删除个人视图