为什么RelativeLayout没有填满整个高度

时间:2014-03-29 15:33:02

标签: android-layout

如何自动填充RelativeLayout内部元素的整个高度。 我想添加一些TextViews。 那么如何排除底部的空白区域呢?

现在的表现如下:

enter image description here

如果我将layout_height替换为     '机器人:layout_height = “FILL_PARENT”' 在RelativeLayout内的所有TextView中, 然后第一个TextView(TITLE)占据100%的高度。 其他元素不可见。 据我所知,体重不适用于RelativeLayout

我的XML如下:     

<TextView
        android:id="@+id/textView0"
        android:gravity="center"
        android:layout_centerHorizontal="true"
        android:layout_width="match_parent"
        android:layout_height="80dp"
        android:text="TITLE"
        android:background="#EEEECC"
        android:textColor="#000000"
        android:layout_weight="30"
        android:textAppearance="?android:attr/textAppearanceLarge" />

<View
        android:id="@+id/line0"
        android:layout_marginLeft="14dp"
        android:layout_marginRight="14dp"
        android:layout_width="wrap_content"
        android:layout_height="1dip"
        android:layout_below="@+id/textView0"
        android:background="#aaaaaa" />

<TextView
        android:id="@+id/textView1"
        android:layout_marginLeft="14dp"
        android:layout_marginTop="14dp"
        android:layout_marginBottom="14dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="NAME1"
        android:textColor="#000000"
        android:layout_below="@+id/line0"
        android:layout_weight="30"
        android:textAppearance="?android:attr/textAppearanceMedium" />

<TextView
        android:id="@+id/textView1R"
        android:layout_marginLeft="14dp"
        android:layout_marginRight="14dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="111111"
        android:textColor="#000000"
        android:layout_alignParentRight="true"
        android:layout_alignTop="@+id/textView1"
        android:textAppearance="?android:attr/textAppearanceSmall"
        />

<View
        android:id="@+id/line1"
        android:layout_width="wrap_content"
        android:layout_marginLeft="14dp"
        android:layout_marginRight="14dp"
        android:layout_height="1dip"
        android:layout_below="@+id/textView1"
        android:background="#AAAAAA" />

0 个答案:

没有答案