How to auto center crop ImageView Android?

前端 未结 4 824
感动是毒
感动是毒 2020-12-13 05:50

I made a listView images. My goal that each item of my listView have the same height of 100dp. I encounter a problem that my imageView is resized automatically, but does not

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-13 06:28

    i know it's late but maybe it would be helpful for someone coming on this question page by using android:scaleType="centerCrop" image is centered but it is cropped from all sides so it would be better to use this property instead that is fitCenter and with this use another property too to maintain the aspect ratio

    android:adjustViewBounds="true"            
    android:scaleType="fitCenter"
    

提交回复
热议问题