How to fit Image into ImageView using Glide

后端 未结 6 567
走了就别回头了
走了就别回头了 2021-01-31 02:20

My concern is how to fit image using android:scaleType=\"fitXY\" into image using Glide.

My ImageView is

<         


        
6条回答
  •  执笔经年
    2021-01-31 02:55

    You would use .centerCrop(), .centerInside() or .fitCenter()

    Another way to do it is with a custom Transformation

提交回复
热议问题