在 FrameLayout 中拉伸图像以匹配相邻元素的高度?
在RelativeLayout 中高度设置为fill_parent 的ImageView 实例将像RelativeLayout 一样拉伸。例如,如果相同布局中的 EditText 高度为 10 行,则图像将拉伸到 10 行高。
如何在 FrameLayout 中复制这种行为?无论 FrameLayout 中其他项目的高度如何,设置为 fill_parent 的图像高度似乎与 wrap_content 的行为相同。
我更愿意纯粹在 XML 中处理这个问题。
An instance of ImageView in a RelativeLayout with height set to fill_parent will stretch as the RelativeLayout does. E.g. if an EditText in the same layout is 10 lines tall, the image will stretch to 10 lines tall.
How can this behavior be replicated in a FrameLayout? The image's height set to fill_parent seems to behave the same as wrap_content, regardless of the height of the other items in the FrameLayout.
I'd prefer to handle this purely in the XML.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找到了一个(可能是黑客)解决方法 - 将 FrameLayout 包装在 LinearLayout 中,让我将 FrameLayout 设置为 fill_parent ,这样它的子级就可以相应地拉伸。所以:
ImageView 将拉伸到 EditText 的高度。
I found a (possibly hack) workaround- wrapping the FrameLayout in a LinearLayout let me set the FrameLayout to fill_parent and so its children could stretch accordingly. So:
And the ImageView will stretch to the height of the EditText.
FrameLayout
将所有子视图覆盖在同一区域上。根据您的设置,您可以更改视图的显示方式。根据Android的FrameLayout,另外,来自 常见布局对象
在您的示例中,无论使用
fill_parent
或wrap_content
,FrameLayout
中的图像都不会拉伸到其最大同级图像的尺寸。FrameLayout
has all it's children views overlaid on the same area. Depending on your settings, you can change how the views are displayed. According to Android's FrameLayout,Also, from Common Layout Objects
In your example, the image in a
FrameLayout
will not be stretched to the dimensions of it's largest sibling, irrespective of usingfill_parent
orwrap_content
.