Image loading in Android.

There a lot libraries for loading images. Lets talk about couple of them. Picasso (http://square.github.io/picasso/) dependency dependencies { compile ‘com.squareup.picasso:picasso:2.5.1’ } This library easy to use. To load image from url to ImageView you need do just one line. Picasso.with(context).load(“http://i.imgur.com/DvpvklR.png”).into(imageView); Current library have a features which can be useful for your Read more…