These days, I’ve been developing an application that reads and writes entries from/into Android Contacts.
Everything goes fine until I need to insert email entry into Android Contact by Contact Content Provider API.
This is how to insert a people or phone entry into contact (people, phones table):
getContentProvider().insert(People.CONTENT_URI, values);
getContentProvider().insert(Phones.CONTENT_URI, values);
That’s fine according to
http://code.google.com/android/devel/data/contentproviders.html
However when I insert an [...]
Continue reading " Inconvenienced when using Contact Content Provider on Android "