Android 文本字段中间自动完成
我正在制作一个类似于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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我为此使用了 MultiAutoCompleteTextView。它有效。
I have used the MultiAutoCompleteTextView for this.It worked.
有 2 种解决方法:
在文本字段旁边创建一个
Add
按钮,该按钮会弹出一个具有自动完成功能的对话框。返回时,将姓名添加到联系人字段。通过单击同一页面上的
添加
按钮,为每个要添加的联系人动态创建一个新的文本字段。在每个文本字段旁边放置一个删除
按钮。There are 2 workarounds:
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.Dynamically create a new text field for each contact to be added by clicking an
add
button on the same page. Put aremove
button next to each text field.