填充剩余空间的嵌套片段

时间:2016-11-14 10:34:34

标签: android android-framelayout android-nested-fragment

我想有一个嵌套片段,它应该占用剩下的空间。问题是它甚至没有显示,因为高度是1像素。如果我将高度设置为300 dp,例如一切看起来都不错。这是我的代码。也许布局无法计算其他两个布局的高度。:

          <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="5dp"
            android:orientation="vertical">

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@drawable/white_with_divider_bg"
                android:id="@+id/firstL">

            </RelativeLayout>

            <RelativeLayout
                android:id="@+id/secondL"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="5dp">

            </RelativeLayout>

            <FrameLayout
                android:id="@+id/child_fragment"
                android:layout_height="0dip"
                android:layout_width="match_parent"
                android:layout_weight="1"/>

        </LinearLayout>

它应该是这样的:

enter image description here

1 个答案:

答案 0 :(得分:0)

使用砝码时,LiniearLayout的所有孩子都应该有体重,但这对你没有帮助。你应该有android:id =“@ + id / child_fragment”具有height =“match_parent”并删除权重。

这应该有效。