图片库Picasso

  • Picasso: A powerful image downloading and caching library for Android
  • square出品,必为精品
  • 官方地址:Picasso
  • Images add much-needed context and visual flair to Android applications. Picasso allows for hassle-free image loading in your application—often in one line of code!
  • 一行解决图片下载缓存显示:
    Picasso.with(context).load("http://i.imgur.com/DvpvklR.png").into(imageView);

Picasso的特性

  • 自动完成Android APP的图片加载
  • 处理图片回收以及取消下载操作
  • 内存和磁盘自动缓存
图片库Picasso_第1张图片
Picasso_Image.png

你可能感兴趣的:(图片库Picasso)