添加联系人时将城市添加到邮政地址 - Android
我正在通过意图添加联系人,但无法弄清楚如何将城市添加到邮政地址。使用 ContactsContract.Intents.Insert.POSTAL 作为键,允许我将地址放入:
intent.putExtra(ContactsContract.Intents.Insert.POSTAL ,cm.getAddress());
但我不确定如何添加城市。在 API 中我看到:
ContactsContract.CommonDataKinds.StructuredPostal.CITY
但我不知道如何使用它。
感谢您对此的任何想法。我搜索了演示,但找不到任何东西。
问候, 朱利叶斯.
I am adding a contact through an Intent and am unable to figure out how to add the City to the Postal Address. Using ContactsContract.Intents.Insert.POSTAL as the key, allows me to put the address in:
intent.putExtra(ContactsContract.Intents.Insert.POSTAL ,cm.getAddress());
but I'm not sure how to add the city. In the API I see:
ContactsContract.CommonDataKinds.StructuredPostal.CITY
but I'm not sure how to use this.
Thanks for any ideas on this. I searched the Demos, but couldn't find anything.
Regards,
Julius.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在通过 ContentResolver 更新联系人的邮政地址。如果有帮助的话这是我的工作代码:
I am updating a contact's postal address through ContentResolver. If it helps here is my working code: