最近做移动的签批,给ImageView设置Bitmap图片。在签批图片宽度超出父窗体宽度的时候,ImageView的高度自适应异常,表现的效果如图,上下留白(如图)。
<ImageView
android:id="@+id/image1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
而解决方案很简单,添加android:adjustViewBounds="true" 属性。
<ImageView
android:id="@+id/image1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true" />