Android 联系信息更新是否有意?
我可以通过使用 putExtra 将信息作为额外数据传递来使用 Intent 创建新联系人,是否可以使用信息创建 Intent,如果联系人已在电话簿中,它将使用新信息进行更新?
I can create new contact with Intent by passing info as extra data with putExtra, is it possible to create Intent with info and if contact is already in phonebook it will be update with new info?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上,您可以使用意图通过 ContactsContract 创建新联系人,并且它并未被弃用。
http://developer.android.com/reference/android/provider/ContactsContract.Intents。 Insert.html
对我有用的示例:
Actually you can use intents to create new contacts with ContactsContract and it's not deprecated.
http://developer.android.com/reference/android/provider/ContactsContract.Intents.Insert.html
example that works for me:
自 Android 2.0 起,不推荐使用 Intents 创建新联系人。使用 ContactsContract。
以下是 文档 和 示例。
Using Intents to create new contacts is deprecated since Android 2.0. Use ContactsContract.
Here are the docs and an example.