<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/section_one_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="18dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:singleLine="true"
android:text="Summary"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#51556C"
android:textSize="13sp"
android:textStyle="bold" />
<ListView
android:id="@+id/section_list_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp" >
</ListView>
<TextView
android:id="@+id/section_two_header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="18dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:singleLine="true"
android:text="Data"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#51556C"
android:textSize="13sp"
android:textStyle="bold" >
</TextView>
<LinearLayout
android:id="@+id/eve_det"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp"
android:background="@layout/style_evedetail"
android:orientation="vertical" >
<TextView
android:id="@+id/section_two_data"
android:layout_width="fill_parent"
android:layout_height="100dp"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:scrollbars="vertical"
android:textSize="10sp" >
</TextView>
<EditText
android:id="@+id/section_two_edit_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:focusableInTouchMode="true"
android:imeActionId="@+id/done_button"
android:imeActionLabel="done"
android:singleLine="true" />
</LinearLayout>
<TextView
android:id="@+id/section_three_header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="18dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:text="Attachment"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#51556C"
android:textSize="13sp"
android:textStyle="bold" >
</TextView>
<ListView
android:id="@+id/attachment_list_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp" />
</LinearLayout>
これはスクロール ビューの下のコードです。ここでは、Header と対応する ListView、次に Edit Text を含む TextView、そして再び header と ListView を表示する必要があります。2 つのリスト ビューですべてのリスト アイテムを表示する方法を教えてください。または、他のアイデアがあれば教えてください。