最佳答案
如何使随机大小的图像适合ImageView
?
时间:
ImageView
尺寸为250dp*250dpImageView
尺寸应与缩放图像的尺寸匹配例如,对于100×150的图像,图像和ImageView
应该是166×250。
例如,对于150*100的图像,图像和ImageView
应该是250*166。
如果我将边界设置为
<ImageView
android:id="@+id/picture"
android:layout_width="250dp"
android:layout_height="250dp"
android:layout_gravity="center_horizontal"
android:layout_marginTop="20dp"
android:adjustViewBounds="true" />
图像完全符合ImageView
,但ImageView
始终为250dp*250dp.