android – 垂直布局,2个元素,使顶部填充剩余空间(底部有一个wrap_content)
作者:互联网
我有以下两难困境.两个元素,一个在彼此之上.底部有高度的wrap_content.我希望顶部元素填充剩余的空间,而不会重叠两个元素(例如,如果我使用FrameLayout会发生这种情况).
所有元素的宽度都是match_parent.
这是一个模型(为清晰起见,一些属性被截断):
<LinearLayout android:layout_height="match_parent">
<CustomView android:layout_height="???????" />
<TextView android:layout_height="wrap_content">
</LinearLayout>
解决方法:
<CustomView
android:layout_height="0dp"
android:layout_weight="1"
.../>
标签:android,android-layout,height,xml-layout 来源: https://codeday.me/bug/20190723/1511543.html