I'm creating a new contact by launching a "new contact" intent like so:
Intent intent = new Intent(Intent.ACTION_INSERT);
intent.setType(ContactsContract.Contacts.CONTENT_TYPE);
intent.putExtra(..., ...);
startActivity(intent);
Does anyone know how I can pre-populate the Photo field in this case? Since API level 11 I can use ContactsContract.Intents.Insert.DATA to pass the photo in the intent's extras, but I also need to support earlier versions.
If you know a workaround, that would also help. One way that I know of to work around it is to create the contact manually first (with the photo set) and then launch an "edit contact" intent, but I would prefer not to do that if there are better options.
Thanks in advance.