如何使图像适合android中的imageButton?

时间:2015-03-23 00:38:17

标签: android

我需要在我的应用中制作四个imageButton。每当我将JPEG图像插入Android Studio并将其放在imageButton上时,该按钮的大小就会增大,因此图像不适合按钮。

我需要按钮才能保持与我制作的尺寸相同的尺寸,并且需要图像很好地贴合按钮并居中。我尝试了一切。有谁知道如何做到这一点?这可以用任何格式的任何大小的图像来完成吗?

1 个答案:

答案 0 :(得分:0)

要使图片填充ImageButton,请使用 - android:scaleType="fitXY"

<ImageButton
android:id="@+id/TextButton"
android:layout_width="match_parent"
android:layout_height="45dp"
android:layout_weight="0.5"
android:scaleType="fitXY"
android:src="@drawable/jpeg_image" />