如何使用编辑框过滤列表视图 - Android

发布于 2024-09-07 10:49:32 字数 68 浏览 2 评论 0原文

我正在制作法律术语词汇表,我希望能够通过在编辑框中键入内容来缩小列表中的结果范围,我尝试寻找解决方案,但没有一个对我有用。

I am making a Glossary of legal terms and I would like to be able to narrow the results in the list by typing in an edit box, I have tried finding a solution but none of them have worked for me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梨涡少年 2024-09-14 10:49:49

在 Android 上,您不需要编辑框来实现这一点。并且不建议这样做。

相反,只需为您的自定义适配器实现 Filterable,一旦用户在查看列表时输入某些内容,它将进行过滤。屏幕键盘像往常一样出现按住菜单

这是一个教程,其中包含 实现可过滤

On Android you don't need a editbox to make that happen. And it's not advised to do so.

Instead just implement Filterable for your Custom Adaptor, and once the user will type in something while views the list it will filter. The onscreen keyboard as usual comes up with holding Menu

Here is a tutorial that has code to implement Filterable

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文