如何使用电话簿中的联系人发送短信而不是写电话号码?
我通过写一个人的电话号码向他发送短信,但现在我想添加通过选择发件人的联系人从电话簿联系人中自动获取号码的功能。任何人都可以告诉我如何在我的应用程序中添加该功能吗?提前致谢。
I'm sending sms to a person by writing his phone number but now I want to add functionality of getting number automatically from phone book contacts by selecting sender's contact.Can anyone give me some idea how to add that functionality in my application ? Thanks in avance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可以通过以下方式完成:
按钮
或单击用于收集电话号码的EditText
)//单击时选择联系人
当用户单击
EditText
时,这将加载所有联系人。This can be done as follows:
button
click or on clicking on theEditText
you use to collect phone number)// Pick contacts when clicked
This will load all the contacts when the user clicks the
EditText
.我认为您首先需要通过 Contacts API 访问存储在手机上的联系人。然后从原始联系人中检索电话号码并使用它发送短信。
I think you first need to access the contacts stored on the phone via the Contacts API. Then retrieve a phone number from a contact raw and use it to send your sms.