当我尝试使用此Intent时......
Intent i = new Intent(Intent.ACTION_INSERT_OR_EDIT);
i.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE);
startActivityForResult(i,INSERT_CONTACT);
它加载联系人列表然后在选择或创建联系人之后我不会返回我的应用程序。我检查了日志,没有什么突出的。 ICS中有新的意图行动吗?
由于
答案 0 :(得分:1)
你错过了这一行:
intent.putExtra(ContactsContract.Intents.Insert.NAME, "Larry Page");
有效“字段”: http://developer.android.com/reference/android/provider/ContactsContract.Intents.Insert.html