hai....i want to make an application to add personal details to the contacts in android I am able to add the name phone number etc using..
intent addContactIntent = new Intent(Contacts.Intents.Insert.ACTION, Contacts.People.CONTENT_URI);
addContactIntent.putExtra(Contacts.Intents.Insert.NAME, "myname");
addContactIntent.putExtra(Contacts.Intents.Insert.PHONE, "232323222");
addContactIntent.putExtra(Contacts.Intents.Insert.PHONE_TYPE, Contacts.Phones.TYPE_MOBILE);
but problem is that in address field their is city,street etc and here i cannot able to add data......plz help