0

我在网上搜索将 设置imageView为默认大小,imageView单击按钮时是否更改。到目前为止,我已经尝试了这两个。

android:scaleType="fitXY"
android:adjustViewBounds="true"

ImageView当我单击一个按钮来更改它包含的图像时,我仍然会展开。有没有办法设置ImageView大小默认值是否会更改按钮单击事件的内容?

4

1 回答 1

7

是的简单使用:

<ImageView
    android:src="@drawable/somebackground"
    android:layout_width="40dp"
    android:layout_height="40dp"/>

而不是wrap_contentor match_parent

编辑

如果您更改的图像大小不同,请记住使用某种scaleType(我更喜欢android:scaleType="centerCrop")。

于 2013-03-07T15:06:48.643 回答