Reputation:
I want to use the contact picker intent in my app. I also want to have functionality of adding a contact from the same intent. I searched for if we can combine the contact picker intent and the insert intent but it seems not possible. So Can we add a button inside the contact picker intent. How can we do it? Thank you..
Upvotes: 0
Views: 57
Reputation: 1007658
No. The ACTION_PICK
activity is a UI provided by another app. You cannot modify it. You can implement your own contact picker UI, by querying ContactsContract
for available contacts and showing them directly.
Upvotes: 1