解决方法
适合我的解决方案是创建一个TableLayout,其中包含一个带标题的行和一个带有列表的行,如下所示:
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <include layout="@layout/header" /> <ListView android:id="@android:id/list" android:layout_width="match_parent" android:layout_height="match_parent"/> </TableLayout>
请确保ListView具有@android:id / list作为ID.