Possible Duplicate:
How to add new contacts in android

public boolean createContact(String name, String number, String email) 
    {
        boolean success = true;

        try
        {
            ContentValues contentValues = new ContentValues();

            ContentResolver contentResolver  = getContentResolver();

            contentValues.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
            contentValues.put(Phone.NUMBER, "123254");
            Uri uri = contentResolver.insert(android.provider.ContactsContract.Data.CONTENT_URI, contentValues);

            if(uri==null)
            {
                success = false;
            }

        /*  

            ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();

             ops.add(ContentProviderOperation.newInsert(android.provider.ContactsContract.Contacts.CONTENT_URI)
                      .withValue(Email.DATA, email)
                      .withValue(ContactsContract.Contacts.CONTENT_ITEM_TYPE, Email.CONTENT_ITEM_TYPE)
                      .build());


           contentResolver.applyBatch(ContactsContract.AUTHORITY, ops);

}
        catch (Exception e) 
        {
            e.printStackTrace();
            success = false;
        }
        return success;
    }

I am getting NullPointer Exception I don't know why I have also specified WRITE_CONTACTS Permission. Please help me ............

link|improve this question

80% accept rate
I dont want to use android.provider.Contacts i want to create a contact using android.provider.ContactContracts – KK_07k11A0585 Dec 9 '11 at 11:54
3  
good luck stackoverflow.com/questions/4744187/… – lnu Dec 9 '11 at 12:02
Use the contactslib Library. (Fair warning : it's not being maintained anymore.) Here's the page where they show you how to add new contacts. This is by far the cleanest method. – st0le Dec 9 '11 at 12:04
thank u for ur answer but can u tell me how do i implement PersonContact ContactsHelper and other classes I dont get what this actually does there they do not mentioned anything about android.provider.ContactContracts which is the base uri for all contacts – KK_07k11A0585 Dec 9 '11 at 12:14
@KK_07k11A0585, It's OpenSource. Do a SVN Checkout (at the page) or you can browse the source code online :) – st0le Dec 9 '11 at 12:47
show 2 more comments
feedback

closed as exact duplicate by casperOne Mar 23 at 17:04

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

ContentValues values = new ContentValues();
            values.put(Data.RAW_CONTACT_ID, 001);
            values.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
            values.put(Phone.NUMBER, "            1-800-GOOG-411      ");
            values.put(Phone.TYPE, Phone.TYPE_CUSTOM);
            values.put(Phone.LABEL, "free directory assistance");
            Uri dataUri = getContentResolver().insert(android.provider.ContactsContract.Data.CONTENT_URI, values);

Use the above code. You are not providing id. http://developer.android.com/reference/android/provider/ContactsContract.Data.html

link|improve this answer
feedback

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