9

我有一个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_alignParentBottomlayout_alignBottom="@+id/im"then 它确实有效(有点;这不是一个令人满意的解决方案,但至少它不再是 0 高度)。

这是怎么回事?这是一个错误吗?

4

2 回答 2

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" >
于 2012-10-17T17:31:52.300 回答
2

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

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

罗尔夫

最终编辑?:

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

<?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>
于 2012-10-17T17:29:33.960 回答