compile 'com.squareup.picasso:picasso:2.5.2'
//Picasso.with(context).setLoggingEnabled(true); Picasso.with(context) .load(image.getFile()) .resize(Statics.getScreenWidth() / 4, Statics.getScreenWidth() / 4) .centerCrop() .into(holder.imageViewThumbnail);
References
http://square.github.io/picasso/