我将使用哪些布局/如何在不重叠的情况下将布局堆叠在一起?
我试图在线性布局中包含 2 个相对布局。相对布局需要彼此垂直堆叠。我已经尝试了以下代码,但没有任何运气。有什么建议么?
<LinearLayout
android:id="@+id/headerquickmatch"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout
android:id="@+id/matchnameheader"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
.../>
<EditText
... />
</RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/matchnameheader" >
<TextView
... />
<EditText
... />
<Button
... />
</RelativeLayout>
</LinearLayout>