首页 > 代码库 > Picasso应用

Picasso应用

https://futurestud.io

This is a Powerful Image Downloading and Caching Library for Android

1. Add dependence to your project,

compile ‘com.squareup.picasso:picasso:2.5.2

2. Simplly get a pic from internet and display it.

Picasso.with(Profile.this).load(uProfile.getUrl()).into(profilePhoto);

Picasso应用