垂直布局,2个元素,使顶部填充剩余空间(底部有一个wrap_content)

时间:2012-10-15 13:11:36

标签: android android-layout height xml-layout

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

所有元素的宽度均为match_parent

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

<LinearLayout android:layout_height="match_parent">

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

  <TextView android:layout_height="wrap_content">

</LinearLayout>

1 个答案:

答案 0 :(得分:9)

<CustomView 
    android:layout_height="0dp"
    android:layout_weight="1"
    .../>