如何在 Android 中显示此图像?

发布于 2024-10-02 02:40:38 字数 405 浏览 1 评论 0原文

如何在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

咿呀咿呀哟 2024-10-09 02:40:38

一些要点。
如果您想保持宽高比而不是 fitCenter,您应该尝试 centerInside

Scale the image uniformly (maintain the image's aspect ratio) so
that both dimensions (width and height) of the image will be equal
to or less than the corresponding dimension of the view (minus padding). 

请记住,使用您的应用程序的设备可能具有不同的屏幕尺寸。
如果您的背景图像是可以拉伸的,我建议您尝试 NinePatchDrawable

Some points.
If you want to manteint aspect ratio instead of fitCenter you should try centerInside:

Scale the image uniformly (maintain the image's aspect ratio) so
that both dimensions (width and height) of the image will be equal
to or less than the corresponding dimension of the view (minus padding). 

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文