Android 联系信息更新是否有意?

发布于 2024-10-02 13:51:38 字数 95 浏览 2 评论 0原文

我可以通过使用 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 技术交流群。

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

发布评论

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

评论(2

冬天的雪花 2024-10-09 13:51:38

实际上,您可以使用意图通过 ContactsContract 创建新联系人,并且它并未被弃用。

http://developer.android.com/reference/android/provider/ContactsContract.Intents。 Insert.html

对我有用的示例:

Intent i = new Intent(Intent.ACTION_INSERT_OR_EDIT);
i.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE);
i.putExtra(Insert.NAME, "TESTTEST");
i.putExtra(Insert.PHONE, "209384");
startActivity(i);

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:

Intent i = new Intent(Intent.ACTION_INSERT_OR_EDIT);
i.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE);
i.putExtra(Insert.NAME, "TESTTEST");
i.putExtra(Insert.PHONE, "209384");
startActivity(i);
诠释孤独 2024-10-09 13:51:38

自 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.

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