我在Android中使用ImageView
,我最初将layout_height
和layout_width
设置为wrap_content
,并设置maxHeight
和{{1属性。
这就是我的布局中的样子:
maxWidth
但是当我从图库中选择一张图片时,它会覆盖我的整个屏幕,忽略<ImageView
android:id="@+id/profileImageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxWidth="226dp"
android:maxHeight="174dp"
android:background="@drawable/photo" />
和maxWidth
。我该如何解决这个问题?
答案 0 :(得分:48)
添加android:adjustViewBounds="true"