How to auto center crop ImageView Android?

前端 未结 4 825
感动是毒
感动是毒 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:10

    Are you aware of the cropping options on ImageView?

    http://developer.android.com/reference/android/widget/ImageView.ScaleType.html

    You will just apply these as an attribute in your XML:

    like:

    android:scaleType="centerCrop"  
    

提交回复
热议问题