I have a listView with an adapter that contains ImageView of variable size (width and height). I need resize the pictures load with Picasso to the max width of
ImageView
Picasso.get() .load(message_pic_url) .fit() .centerCrop() .placeholder(R.drawable.profile_wall_picture) .into(holder.message_picture);
Try this code, Worked for me.