Resize image to full width and variable height with Picasso

前端 未结 12 1563
野趣味
野趣味 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 18:02

        Picasso.with(this).load(url).resize(1800, 1800).centerInside().into(secondImageView)
    
        
    

    This will help you with variable height of images for all devices

提交回复
热议问题