如何在过滤 ListView 时禁用搜索文本弹出窗口?
使用过滤的 ListView 时,如何禁用在 ListView 上方显示过滤文本的弹出窗口?它遮盖了 ListView,我想阻止它显示,但到目前为止我还没有找到合适的解决方法。
When using a filtered ListView, how do I disable the popup that shows the filter text above the ListView? It's obscuring the ListView and I'd like to prevent it from showing, but so far I haven't been able to find a suitable workaround.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不确定您是否可以在标准
ListView
上执行此操作,您可能必须扩展它。或者,如果您在屏幕上有自己的EditText
(我不能确定,但您发布的图片看起来像是有一个),您可以执行以下操作:I'm not sure if you can do this on the standard
ListView
, you may have to extend it. Alternatively, if you have your ownEditText
on screen (I can't tell for sure, but the picture you posted looks like there is one), you can do something like this:要摆脱它,然后
在弹出布局上放置一个“确定”按钮
to get rid of it then put
in an ok button on the popup layout