Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在网上搜索将 设置imageView为默认大小,imageView单击按钮时是否更改。到目前为止,我已经尝试了这两个。
imageView
android:scaleType="fitXY" android:adjustViewBounds="true"
ImageView当我单击一个按钮来更改它包含的图像时,我仍然会展开。有没有办法设置ImageView大小默认值是否会更改按钮单击事件的内容?
ImageView
是的简单使用:
<ImageView android:src="@drawable/somebackground" android:layout_width="40dp" android:layout_height="40dp"/>
而不是wrap_contentor match_parent。
wrap_content
match_parent
编辑:
如果您更改的图像大小不同,请记住使用某种scaleType(我更喜欢android:scaleType="centerCrop")。
scaleType
android:scaleType="centerCrop"