When i try to use this Intent like so....

Intent i = new Intent(Intent.ACTION_INSERT_OR_EDIT);
i.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE);
startActivityForResult(i,INSERT_CONTACT);

it loads the contact list then after selecting or creating a contact I do not return back to my app. i have checked the logs and nothing stands out. Is there a new intent action in ICS?

Thanks

link|improve this question

nobody is having this problem? – Maurycy Dec 19 '11 at 21:11
I have a related problem, made another question about it stackoverflow.com/questions/8597080/… – getekha Dec 21 '11 at 23:20
I went with just building my own picker / editor which uses ---- Intent i = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI); ---- and then allows user to edit information within my own custom activity . :( wish it was native – Maurycy Dec 22 '11 at 1:17
stackoverflow.com/questions/9551821/… - similar issue and no reply – user1247617 Mar 25 at 3:41
Partial answer is here: stackoverflow.com/questions/8597080/… – OferR Mar 28 at 12:48
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.