2

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

Zain
  • 37,492
  • 7
  • 60
  • 84
Taha Sami
  • 1,565
  • 1
  • 16
  • 43

1 Answers1

1

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

Zain
  • 37,492
  • 7
  • 60
  • 84