如何在 Android 中显示具有以下配置的图像?
- 保留原始纵横比(图像可以缩放,但不能拉伸)
- 填充父级的宽度
- 对齐到父级的底部
以下不起作用:
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scaleType="fitCenter"
android:layout_alignParentBottom="true"
android:src="@drawable/background" />
使用上面的 xml,ImageView 采用父级的宽度,但 ImageView 内的图像没有。