如何在 android 中显示 edittext 字段的多个值的建议?

发布于 2024-11-19 13:53:25 字数 194 浏览 3 评论 0 原文

我需要 Android 应用程序中的一个功能,类似于 Android 真实设备中的 Gmail 应用程序,它在“收件人”字段中提供了多个值的下拉建议,或者类似于堆栈溢出的多个值的标签建议。例如,我在“收件人”字段中输入了一个电子邮件地址,然后我需要在逗号值后列出输入文本的电子邮件地址,我对此功能进行了很多搜索,但找不到确切的解决方案。请提供建议和任何帮助,我们将不胜感激。

I need a functionality in android app, that is similar to Gmail app in android real device which has drop down suggestions for multiple value in "To" field or like stack overflow's tag suggestions for multiple values. For example, I entered a email address in the To field and then i need to list the email addresses for the entered text after the comma value, i I searched a lot for this functionality but i cant find the exact solution. Please advice and any help will be appreciated.

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

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

发布评论

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

评论(1

孤独岁月 2024-11-26 13:53:25

因此,gmail 的自动完成功能可能比您想要的复杂得多。如果您对源代码以及实际的 Gmail 自动完成功能感兴趣,请查看 消息撰写587 - 605 行以及 GalEmailAddressAdapter(实际执行自动完成的代码。)

如果您使用用户的联系人进行自动完成,则要简单得多。请在此处查看该示例。

编辑:我在这里找到了一个更好的例子:http://www.betaful.com/2011/02/multiple-e-mail-autocomplete-in-android/

再次,查看联系人以进行自动完成,但包含多个代码查找。

So the autocomplete for gmail is probably a lot more complex than you'd want. If you're interested in the source and what the actual gmail autocomplete looks like, please look at the source for MessageCompose at line 587 - 605 as well as the GalEmailAddressAdapter (the code that actually does the autocompletion.)

If you are doing auto completion using the user's contacts, it's a lot simpler. Please view that example here.

Edit: I found a much better example for you here: http://www.betaful.com/2011/02/multiple-e-mail-autocomplete-in-android/

Again, looks through contacts for autocomplete but includes code for multiple lookups.

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