I want my application to prompt the user to create a new contact, through the standard Contacts interface on Android. Then I want to be able to read the information back fro
For Android 4.0.3 and up, you need to provide a new intent extra:
public static final String INTENT_KEY_FINISH_ACTIVITY_ON_SAVE_COMPLETED = "finishActivityOnSaveCompleted";
intent.putExtra(INTENT_KEY_FINISH_ACTIVITY_ON_SAVE_COMPLETED, true);
I don't have a solution for Android 4.0 to 4.0.2.
Anyone?