如何让`View`填充`RelativeLayout`?

时间:2012-10-17 17:24:24

标签: android layout view relativelayout

我有一个RelativeLayout,其中包含一些内容,我想要一个背景视图来填充整个内容。这是我期望的工作:

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#000" >

            <View
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_alignParentLeft="true"
                android:layout_alignParentRight="true"
                android:layout_alignParentTop="true"
                android:layout_alignParentBottom="true"
                android:layout_margin="1px"
                android:background="#fafafa" />

            <ImageView
                android:id="@+id/im"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                android:src="@drawable/ic_blank_profile" />

        .... and so on.

这不起作用。它填充宽度但高度设置为零。但是,如果我将layout_alignParentBottom更改为layout_alignBottom="@+id/im",那么工作(有点;这不是一个令人满意的解决方案,但至少它不再是0高度)。< / p>

发生了什么事?这是一个错误吗?

2 个答案:

答案 0 :(得分:2)

尝试将相对布局的layout_height属性设置为match_parent

如果从视图中删除所有alignParent属性并仅使用match_parent作为视图的宽度和高度会发生什么?

罗尔夫

最终编辑?:

小例子,这样的事情? 使用容器?当内部RelativeLayout的内容增长时,View将随之拉伸。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >


    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >


        <View
            android:id="@+id/view1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignBottom="@+id/relativeLayout1"
            android:layout_alignParentLeft="true"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:layout_margin="1px"
            android:background="#fafafa" />

        <RelativeLayout
            android:id="@+id/relativeLayout1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >

            <ImageView
                android:id="@+id/im"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                android:src="@drawable/ic_blank_profile" />
        </RelativeLayout>
    </RelativeLayout>

</LinearLayout>

答案 1 :(得分:2)

您需要更改相对布局

android:layout_height="wrap_content"

android:layout_height="match_parent"

因为您将父级的高度包装到子级,并且子级与父级匹配,所以它将会出现0。

如果你想在相对布局之上/之下有其他东西,那么使用android权重。

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="0px"  <!-- or 0dip -->
        android:layout_weight="1"
        android:background="#000" >