My problem is that when I call system activity
Intent intent = new Intent(Intent.ACTION_INSERT, ContactsContract.Contacts.CONTENT_URI);
startActivityForResult(intent, ADD_CONTACT_ACTIVITY);
to insert a new contact in my addressbook, when I press Save button, the activity does not finish spontaneously but I must press device back button.
What can I do to end it spontaneously?