如何在 Android 中显示此图像?
如何在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 内部没有。
How do I display an image with the following configuration in Android?
- Retain original aspect ratio (the image can be scaled, but not stretched)
- Fill the width of the parent
- Aligned to the bottom of the parent
The following does not work:
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scaleType="fitCenter"
android:layout_alignParentBottom="true"
android:src="@drawable/background" />
Using the above xml the ImageView takes the width of the parent, but the image inside the ImageView does not.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一些要点。
如果您想保持宽高比而不是 fitCenter,您应该尝试 centerInside:
请记住,使用您的应用程序的设备可能具有不同的屏幕尺寸。
如果您的背景图像是可以拉伸的,我建议您尝试 NinePatchDrawable
Some points.
If you want to manteint aspect ratio instead of fitCenter you should try centerInside:
Remember that devices using your application might have different screen sizes.
If your background image is something that can be stretched I would recommend you try a NinePatchDrawable