我有一個LinearLayout應該包含一個項目列表(每個項目是一個LinearLayout)。 問題是childs項目(LinearLayouts)不會一個顯示在另一個之下:只有第一個可見。在另一個LinearLayout中添加多個LinearLayout不能正常工作
這是我layout.xml:
<?xml version="1.0" encoding="utf-8"?>
<TextView
android:id="@+id/label_TextView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="2"
android:paddingLeft="@dimen/form_label_padding_left"
android:text="" />
<LinearLayout
android:id="@+id/form_list_holder"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="8"
android:orientation="horizontal"
android:background="@color/form_list_background" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@+id/label_TextView1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="2"
android:paddingLeft="@dimen/form_label_padding_left"
android:text="1" />
<EditText
android:id="@+id/edtx_input1"
android:layout_width="0dp"
android:layout_height="@dimen/form_input_height"
android:layout_marginTop="@dimen/form_edittext_margin_top"
android:layout_weight="5" />
<EditText
android:id="@+id/edtx_remark1"
android:layout_width="0dp"
android:layout_height="@dimen/form_input_height"
android:layout_marginTop="@dimen/form_edittext_margin_top"
android:layout_weight="3"
android:hint="@string/remarks"
android:visibility="invisible" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@+id/label_TextView2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="2"
android:paddingLeft="@dimen/form_label_padding_left"
android:text="1" />
<EditText
android:id="@+id/edtx_input2"
android:layout_width="0dp"
android:layout_height="@dimen/form_input_height"
android:layout_marginTop="@dimen/form_edittext_margin_top"
android:layout_weight="5" />
<EditText
android:id="@+id/edtx_remark2"
android:layout_width="0dp"
android:layout_height="@dimen/form_input_height"
android:layout_marginTop="@dimen/form_edittext_margin_top"
android:layout_weight="3"
android:hint="@string/remarks"
android:visibility="invisible" />
</LinearLayout>
</LinearLayout>
你知道這是爲什麼發生?我認爲在LinearLayout中,如果當前行沒有更多的可用空間,孩子將顯示在下一行。
改變方向垂直 –
並設置**安卓weightsum **父申請** ** layout_weight – Ishtiaq