androidandroid-imagebutton

ImageButton does not resize the image


Why ImageButton does not resize the image?

<ImageButton
    android:layout_width="250dp"
    android:layout_height="250dp"
    android:background="null"
    android:src="@drawable/r" />

Preview Image

enter image description here

Image name is r.png


Solution

  • Try using android:scaleType="centerCrop"

    <ImageButton
        android:layout_width="250dp"
        android:layout_height="250dp"
        android:scaleType="centerCrop"
        app:srcCompat="@drawable/r" />
    

    If you don't want to crop it, then use android:scaleType="fitCenter" instead