3

我有以下两难境地。两个元素,一个在彼此之上。底部有wrap_content高度。我希望顶部元素填充剩余空间而不使两个元素重叠(例如,如果我使用就会发生这种情况FrameLayout)。

宽度适用match_parent于所有元素。

这是一个模型(为清楚起见,截断了一些属性):

<LinearLayout android:layout_height="match_parent">

  <CustomView android:layout_height="???????" /> 

  <TextView android:layout_height="wrap_content">

</LinearLayout>
4

1 回答 1

9
<CustomView 
    android:layout_height="0dp"
    android:layout_weight="1"
    .../>
于 2012-10-15T13:16:20.073 回答