I want to use the contact picker intent to pick the contacts. Also I want the function of adding contacts in my activity. There is an intent to add contacts, nut I want to know that can we use this both together as used in the contacts app in android?
Like this:
Can We use contact picker as well as add contact intent? Thank you..
No.
ACTION_PICK
will allow you to pick a contact. However, there is no way for you to request that the contact-picker UI offer an add-contact option. Furthermore, there is no requirement for a contact-picker UI to even have an add-contact option.If you want to allow the user to add a contact, have your own UI trigger an
ACTION_INSERT
orACTION_INSERT_OR_EDIT
activity:(from this old sample project)