You have to use Picasso.
it's easy to use
downlod latest jar from http://square.github.io/picasso/
simply load image used below code
Picasso.with(context)
.load(url)
.placeholder(R.drawable.placeholder)
.resize(imgWidth, imgHeight)
.centerCrop()
.into(image);