如何在过滤 ListView 时禁用搜索文本弹出窗口?

发布于 2024-12-10 21:46:04 字数 95 浏览 0 评论 0原文

使用过滤的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

等待圉鍢 2024-12-17 21:46:04

我不确定您是否可以在标准 ListView 上执行此操作,您可能必须扩展它。或者,如果您在屏幕上有自己的 EditText (我不能确定,但​​您发布的图片看起来像是有一个),您可以执行以下操作:

EditText et = (EditText) findViewById(R.id.edit_text_id_goes_here);
et.addTextChangedListener(new TextWatcher() {

        @Override
        public void beforeTextChanged(CharSequence s, int start, int count, int after) {}

        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count) {}

        @Override
        public void afterTextChanged(Editable s) {
            adapter.getFilter().filter(s);
        }
});

I'm not sure if you can do this on the standard ListView, you may have to extend it. Alternatively, if you have your own EditText on screen (I can't tell for sure, but the picture you posted looks like there is one), you can do something like this:

EditText et = (EditText) findViewById(R.id.edit_text_id_goes_here);
et.addTextChangedListener(new TextWatcher() {

        @Override
        public void beforeTextChanged(CharSequence s, int start, int count, int after) {}

        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count) {}

        @Override
        public void afterTextChanged(Editable s) {
            adapter.getFilter().filter(s);
        }
});
一页 2024-12-17 21:46:04
popupwindow pw = .....

要摆脱它,然后

pw.dismiss(); 

在弹出布局上放置一个“确定”按钮

popupwindow pw = .....

to get rid of it then put

pw.dismiss(); 

in an ok button on the popup layout

余生一个溪 2024-12-17 21:46:04
ListView lv = getListView();
lv.setTextFilterEnabled(false);
ListView lv = getListView();
lv.setTextFilterEnabled(false);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文