如何使图像按钮上的位图均匀拉伸

时间:2019-05-19 06:12:44

标签: android image android-button

这是我的图像XML描述

<ImageButton
    android:id="@+id/imageButton"
    android:layout_width="match_parent"
    android:layout_height="80dp"
    android:onClick     = "@{() -> viewModel.onButtonClick()}"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    android:background="@{viewModel.thumbnail}" />

viewModel.thumbnail返回缩小的位图图像。

问题在于,将图像附加到图像按钮后会变形

请参阅以下结果。enter image description here

这些图像中的所有棋盘格都应为正方形。

我该如何解决?

1 个答案:

答案 0 :(得分:0)

使用src属性和某种比例类型

https://developer.android.com/reference/android/widget/ImageView.html#attr_android:scaleType

<ImageButton
    android:id="@+id/imageButton"
    android:layout_width="match_parent"
    android:layout_height="80dp"
    android:scaleType="centerInside"
    android:onClick     = "@{() -> viewModel.onButtonClick()}"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    android:src="@{viewModel.thumbnail}" />