我目前正在尝试使用 imageview 显示图像,该图像只有一定的高度,但它应该填满屏幕的整个宽度。在纵向模式和手机(三星 Galaxy Note 2)上的横向模式下,它显示得很好,但是当我在平板电脑(三星 Galaxy Tab)上尝试时,纵向模式看起来仍然很棒但是在横向模式下发生的事情是图像看起来失真,图像覆盖了整个宽度,但高度似乎已关闭。
我确实在图形布局上检查过,但看起来还不错。
这是我的图像视图:
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:src="@drawable/footersuperlong" />
我做了什么让它变形的事情吗?如何使图像正确显示在平板电脑的横向视图上?