我有一张图片,我想根据屏幕尺寸拉伸它。那是我的代码:
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="false"
android:baselineAlignBottom="false"
android:cropToPadding="false"
android:maxWidth="@dimen/padding_small"
android:src="@drawable/footerheader_bg" />
发生的情况是 imageView 框架确实从屏幕的一侧拉伸到另一侧,但其中的图像仍然保持原样。图像是 JPEG,我使用的是 mac(如果相关)。谢谢!