how can i get proper Uri of a particular contact in android 2.1
- by Rishabh
I have written an application and added 2 contacts on emulator, but i
am not able to update their names on android 2.1, code is working on
android 1.6 platform with the following code.
ContentValues contactValues = new ContentValues();
contactValues.put(Contacts.People.NAME, firstName+" "+lastName);
getContentResolver().update(UpdateContactUri,…