Skip to content Skip to sidebar Skip to footer

How To Properly Set An Android Intent With The Show_or_create_contact Action?

I would like to use the internal Contact activity to create a new Contact. Here is the code: Intent i = new Intent(); i.setAction(ContactsContract.Intents.SHOW_OR_CREAT

Solution 1:

I'd imagine that only the constant keys in ContactsContract.Intents.Insert.* are understood by the intent receiver. That would make sense.


Post a Comment for "How To Properly Set An Android Intent With The Show_or_create_contact Action?"