Can we add button inside contact picker intent?

62 Views Asked by At

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

1

There are 1 best solutions below

0
On

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.