如何在 android 中显示 edittext 字段的多个值的建议?
我需要 Android 应用程序中的一个功能,类似于 Android 真实设备中的 Gmail 应用程序,它在“收件人”字段中提供了多个值的下拉建议,或者类似于堆栈溢出的多个值的标签建议。例如,我在“收件人”字段中输入了一个电子邮件地址,然后我需要在逗号值后列出输入文本的电子邮件地址,我对此功能进行了很多搜索,但找不到确切的解决方案。请提供建议和任何帮助,我们将不胜感激。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,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.