标签: android
我正在使用listview来实现带有数组过滤器的搜索。但是当我的键盘打开时,列表视图的高度设置为屏幕的剩余高度并且滚动不起作用。一旦我关闭键盘高度保持不变(小)但滚动工作为什么?
答案 0 :(得分:0)
确保ListView的高度为match_parent:
ListView
match_parent
<ListView android:layout_width="match_parent" android:layout_height="match_parent" />