Android 文本字段中间自动完成

发布于 2025-01-07 01:34:22 字数 100 浏览 0 评论 0原文

我正在制作一个类似于android短信的短信应用程序。 在撰写短信功能的“收件人”字段中,我想输入联系人列表中的联系人。我可以参加第一次联系。但对于第二次联系,它不会自动完成。如何实施?

I am making an SMS application similar to the android sms.
In the "TO" field of the compose sms feature, I want to enter contacts from contact list. I am able to enter for the 1st contact. But for the 2nd contact it does not autocomplete. How to implement this?

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

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

发布评论

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

评论(2

能怎样 2025-01-14 01:34:22

我为此使用了 MultiAutoCompleteTextView。它有效。

I have used the MultiAutoCompleteTextView for this.It worked.

笑脸一如从前 2025-01-14 01:34:22

有 2 种解决方法:

  1. 在文本字段旁边创建一个 Add 按钮,该按钮会弹出一个具有自动完成功能的对话框。返回时,将姓名添加到联系人字段。

  2. 通过单击同一页面上的添加按钮,为每个要添加的联系人动态创建一个新的文本字段。在每个文本字段旁边放置一个删除按钮。

There are 2 workarounds:

  1. Make an Add button next to the text field, which pops up a dialog with autocomplete. When return, add the name to the contact field.

  2. Dynamically create a new text field for each contact to be added by clicking an add button on the same page. Put a remove button next to each text field.

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