0

大家好,这里有个小问题。我在 RelativeLayout 中有一个 EditText 和一个 ListView。ListView 由使用 ArrayAdapter 的字符串数组中的项目填充。thr 数组的大小为 5,ListView Items 是一个表格布局,表格行布局参数设置为与 ListView Widget 相同的 Fill_Parent。现在我希望 Listview Items 填满并占用剩余的屏幕空间。但由于它们只是少数项目,它的行为就像使用 wrap_content。任何想法如何伸展这个 ListView 项目?提前致谢。

4

1 回答 1

0

试试这个:

<ListView
    android:id="@+id/yourListView"
    android:layout_width="fill_parent"
    android:layout_height="match_parent">
</ListView>
于 2012-12-20T14:05:58.183 回答