在 FrameLayout 中拉伸图像以匹配相邻元素的高度?

发布于 2024-11-02 19:58:11 字数 252 浏览 0 评论 0原文

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

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

发布评论

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

评论(2

云雾 2024-11-09 19:58:11

我找到了一个(可能是黑客)解决方法 - 将 FrameLayout 包装在 LinearLayout 中,让我将 FrameLayout 设置为 fill_parent ,这样它的子级就可以相应地拉伸。所以:

<LinearLayout
orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <FrameLayout
        android:measureAllChildren="true"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <EditText
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
        <ImageView
            android:src="@drawable/image"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:scaleType="fitXY"
            android:layout_gravity="right|center_vertical" />
    </FrameLayout>
</LinearLayout>
<RelativeLayout ... >
    ... other stuff ...
</RelativeLayout>
</LinearLayout>

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:

<LinearLayout
orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <FrameLayout
        android:measureAllChildren="true"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <EditText
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
        <ImageView
            android:src="@drawable/image"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:scaleType="fitXY"
            android:layout_gravity="right|center_vertical" />
    </FrameLayout>
</LinearLayout>
<RelativeLayout ... >
    ... other stuff ...
</RelativeLayout>
</LinearLayout>

And the ImageView will stretch to the height of the EditText.

天邊彩虹 2024-11-09 19:58:11

FrameLayout 将所有子视图覆盖在同一区域上。根据您的设置,您可以更改视图的显示方式。根据Android的FrameLayout

框架布局的大小是
其最大子代的大小(加上
填充),可见或不可见(如果
FrameLayout 的父级允许)。

另外,来自 常见布局对象

FrameLayout是最简单的类型
布局对象。基本上是一片空白
屏幕上的空间
稍后用单个对象填充 - 用于
例如,您要交换的图片
然后出去。的所有子元素
FrameLayout 固定在左上角
屏幕一角;你不能
指定不同的位置
儿童视图。后续子视图
将简单地绘制在以前的
部分或完全模糊的
它们(除非较新的对象是
透明)。

在您的示例中,无论使用 fill_parentwrap_contentFrameLayout 中的图像都不会拉伸到其最大同级图像的尺寸。

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,

The size of the frame layout is the
size of its largest child (plus
padding), visible or not (if the
FrameLayout's parent permits).

Also, from Common Layout Objects

FrameLayout is the simplest type of
layout object. It's basically a blank
space on your screen that you can
later fill with a single object — for
example, a picture that you'll swap in
and out. All child elements of the
FrameLayout are pinned to the top left
corner of the screen; you cannot
specify a different location for a
child view. Subsequent child views
will simply be drawn over previous
ones, partially or totally obscuring
them (unless the newer object is
transparent).

In your example, the image in a FrameLayout will not be stretched to the dimensions of it's largest sibling, irrespective of using fill_parent or wrap_content.

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