views:

202

answers:

1

I want to invoke my application once user creates / updates contact from his device. i.e once user hit "Done" button. is it possible ? If possible please provide sample code or link.

Please help and thanks in advance.

A: 

I want to invoke my application once user creates / updates contact from his device. i.e once user hit "Done" button. is it possible ?

No, it is not possible, in terms of detecting the GUI event. You can set up a data observer on the Contacts (or ContactsContract) content provider, and attempt to find out those things that way, though I do not know how well that works.

CommonsWare