2011-05-25 9 views

Respuesta

0
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); 
Cuestiones relacionadas