How to scale an Image in ImageView to keep the aspect ratio

前端 未结 25 2235
孤独总比滥情好
孤独总比滥情好 2020-11-22 04:59

In Android, I defined an ImageView\'s layout_width to be fill_parent (which takes up the full width of the phone).

If the imag

25条回答
  •  梦如初夏
    2020-11-22 05:10

    For anyone of you who wants the image to fit exact the imageview with proper scaling and no cropping use

    imageView.setScaleType(ScaleType.FIT_XY);
    

    where imageView is the view representing your ImageView

提交回复
热议问题