hi im trying to add a phone number to an existing contact on android 2.1. Im currently using:

ContentValues values = new ContentValues();
values.put(Phone.RAW_CONTACT_ID,cursor.getColumnIndex(Phone.CONTACT_ID));
String selection = ContactsContract.Contacts.IN_VISIBLE_GROUP + " = '1'";
ContentResolver cr = getContentResolver();
Cursor cursor = cr.query(ContactsContract.Contacts.CONTENT_URI,null, selection, null,ContactsContract.Contacts.DISPLAY_NAME+" COLLATE LOCALIZED ASC");
if (cursor.getCount() > 0) {
    cursor.moveToPosition(oldcontactid);
    contactid = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts._ID));
    values.put(Phone.RAW_CONTACT_ID,cursor.getColumnIndex(Phone.CONTACT_ID));
    if (Integer.parseInt(cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER))) > 0) {
        Cursor pCur = cr.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,null,ContactsContract.CommonDataKinds.Phone.CONTACT_ID +" = ?",new String[]{contactid}, null);
        while (pCur.moveToNext()) {
            values.put(Phone.NUMBER,pCur.getString(pCur.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER)));
            values.put(Phone.TYPE, Phone.TYPE_MOBILE);
        }
        pCur.close();
    }
}
Uri uri = getContentResolver().insert(Phone.CONTENT_URI, values);

but i get an error:

java.lang.UnsupportedOperationException: Unknown uri: content://com.android.contacts/data/phones

how would i be able to fix this?

thanks for any help, ng93

link|improve this question

Does the code give the same error on a real devices as emulator? – sehugg Sep 13 '10 at 15:40
Phone is deprecated for Android 2.1 ....use ContactsContract – Rohan K Sep 20 '10 at 5:48
feedback

4 Answers

Insert into Data.CONTENT_URI instead of Phone.CONTENT_URI also insert the Data.MIMETYPE column with Phone.CONTENT_ITEM_TYPE.

link|improve this answer
feedback

Have you set the correct permissions in the AndroidManifest.xml? As far as I know the access to the personal information (contacts) is restricted by default.

see here for more about the permission system in android

link|improve this answer
ive set: <uses-permission android:name="android.permission.GET_ACCOUNTS"/> <uses-permission android:name="android.permission.READ_CONTACTS"/> <uses-permission android:name="android.permission.WRITE_CONTACTS"/> – ng93 Jul 7 '10 at 12:15
sorry that I could not help... I hope you solved your problem now please let us know where the problem was? – Mark Jul 18 '10 at 21:07
feedback

You also might want to check your installed apps vs program memory. My Droid Eris worked fine on contacts and from just about any contacts aware application, too.

Until I went past some point of memory load. VZW support 1st level did me no good, I had to insist on 2nd level support. Finally got an answer from someone who knew his spinach. He told be that I had too many apps on the phone, and that this was a known problem.
Still have not cut my working set down enough to get contact edit working :-(

/s/ BezantSoft

link|improve this answer
My problem was with both the phone contacts and the contacts in my google account. I am not sure with the HTC Eris (Android) 2.1 on the full relevancy of the advice VZW gave me. I did undergo the "remove the apps" protocol, and it did not give me "contact edit" ability improvement to a great degree. Of course, being a FOSS user and developer, I have installed and uninstalled a bunch of applications. This could have something to do with things. – BezantSoft Sep 25 '10 at 0:08
Last night I did a hard reset on the phone. It was not difficult. I have contacts edit now, and will keep things updated here if problems reoccur. However, the directions on the online PDF (probably v1.5/1.6) don't match the v2.1 phone: – BezantSoft Sep 25 '10 at 0:49
Manual: To reset the phone 1. Press HOME > MENU, then tap Settings > Security > Factory data reset. ----- With 2.1, I found: HOME > MENU then SETTINGS > PRIVACY > Factory data reset Then you get the factory reset warning dialog. – BezantSoft Sep 25 '10 at 0:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.