continue
I am using following code for populating contacts in Android:
Intent addContactIntent = new Intent(Intent.ACTION_INSERT);
addContactIntent.setType(ContactsContract.Contacts.CONTENT_TYPE);
addContactIntent.putExtra(ContactsContract.Intents.Insert.NAME, "Store Name");
addContactIntent.putExtra(ContactsContract.Intents.Insert.PHONE, "1-869-270-9099");
addContactIntent.putExtra(ContactsContract.Intents.Insert.POSTAL, "postal address");*
But I also need to populate city, street and zip in postal address. How to populate these fields using the above code? Or any alternate way to do so.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,这就是我所做的。
但我需要提醒您的一件事是 Insert.DATA 仅适用于 API 级别 11。因此该解决方案仅适用于 Android 3.0+。
如果大家有更好的解决方案请告诉我。
Ok here is what i have done.
But one thing i need to remind you is that Insert.DATA is available only from API level 11.So this solution only works for Android 3.0+.
If you guys have any better solution please let me know.