Introduction 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 . get (). load ( "http://i.imgur.com/DvpvklR.png" ). into ( imageView ); Many common pitfalls of image loading on Android are handled automatically by Picasso: Handling ImageView recycling and download cancelation in an adapter. Complex image transformations with minimal memory use. Automatic memory and disk caching. Features ADAPTER DOWNLOADS Adapter re-use is automatically detected and the previous download canceled. @Override public void getView ( int position , View convertView , ViewGroup parent ) { SquaredImageView view = ( SquaredImageView ) convertView ; if ( view == null ) { view = new SquaredImageView ( context ); } String url = getItem ( position ); Picasso . get (). load ( url ). into ( view ); } IMAGE TRANSFORMATION...