私はこの親レイアウトを持っています
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:gravity="center|top"
android:text="Title"
android:textSize="20sp" />
<ListView
android:id="@+id/parent_listview"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>
およびparent_listviewのリスト項目にはこのレイアウトがあります
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" android:background="@color/mediumBlue" >
<TextView
android:id="@+id/sub_title"
android:layout_width="wrap_content"
android:layout_alignParentTop="true"
android:layout_height="wrap_content" />
<ListView
android:id="@+id/child_listview"
android:layout_width="wrap_content"
android:layout_height="250dp"
android:layout_below="@id/sub_title" >
</ListView>
</RelativeLayout>
child_listview のアイテムにはこのレイアウトがあります
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" android:background="@color/green" >
<TextView
android:id="@+id/childName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginLeft="10dp" />
<TextView
android:id="@+id/childDesc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp" >
</TextView>
</RelativeLayout>
私は見ることを期待しています
Parent Layout
- Parent ListView
- Parent Item 1
-Child item 1
-Child item 2
-Child item 3
- Parent Item 2
-Child item 1
-Child item 2
- Parent Item 3
-Child item 1
- Parent Item 4
-Child item 1
-Child item 2
-Child item 3
ただし、子リストビューには次のような1つのアイテム(最初のアイテム)のみが表示されます
Parent Layout
- Parent ListView
- Parent Item 1
-Child item 1
- Parent Item 2
-Child item 1
- Parent Item 3
-Child item 1
- Parent Item 4
-Child item 1
子ListViewの高さを250dpに手動で調整すると、より多くのアイテムが表示されますが、アイテムの数に応じて子リストビューの高さを自動ラップする必要があります。どうすればこれを達成できますか?(私は両方のリストビュー用のアダプターを持っていますが、それがこの議論に関連しているかどうかわからないので、含めていません)。