当键盘打开ListView高度更改时

时间:2014-03-23 14:04:32

标签: android

我正在使用listview来实现带有数组过滤器的搜索。但是当我的键盘打开时,列表视图的高度设置为屏幕的剩余高度并且滚动不起作用。一旦我关闭键盘高度保持不变(小)但滚动工作为什么? enter image description here

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

确保ListView的高度为match_parent

<ListView
         android:layout_width="match_parent"
         android:layout_height="match_parent" />