Add contact intent doesn't return data onActivityResult under ICS

后端 未结 1 1600
粉色の甜心
粉色の甜心 2021-01-04 01:50

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

1条回答
  •  借酒劲吻你
    2021-01-04 02:41

    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?

    0 讨论(0)
提交回复
热议问题