How can I stretch the image in imagebutton to the whole area of the imagebutton?

前端 未结 7 960
感情败类
感情败类 2021-02-01 18:09

Here is a picture that will help you understand my problem:

\"It's

I want to stretch

7条回答
  •  生来不讨喜
    2021-02-01 18:54

    Just set this two attributes on the ImageButton:

    android:background="?attr/selectableItemBackgroundBorderless"
    android:scaleType="centerCrop"
    

    With those, you will get the provided src to be stretched, and also if you put some specific width and height on that ImageButton you won't get a rectangle around it.

提交回复
热议问题