Resize image to full width and variable height with Picasso

前端 未结 12 1550
野趣味
野趣味 2020-11-29 17:10

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

12条回答
  •  情深已故
    2020-11-29 17:47

    Picasso.get()
    .load(message_pic_url)
    .fit()
    .centerCrop()
    .placeholder(R.drawable.profile_wall_picture)
    .into(holder.message_picture);
    

    Try this code, Worked for me.

提交回复
热议问题