- 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!
- 一行解決圖片下載緩存顯示:
<pre>Picasso.with(context).load("http://i.imgur.com/DvpvklR.png").into(imageView);</pre>
Picasso的特性
- 自動完成Android APP的圖片加載
- 處理圖片回收以及取消下載操作
- 內(nèi)存和磁盤自動緩存
Picasso_Image.png