I want to get contacts saved in phone only not sim contacts using new api contactContracts

i am doing this by filtering Account type (not com.anddroid.contacts.sim),this work for one handset(HTC Desire) but there is no common account type found which can work for all handsets can anybody tell me how to do that

thanks in advance

link|improve this question

75% accept rate
can't you filter by 'DeviceOnly' Account type? – systempuntoout Nov 9 '10 at 14:34
feedback

4 Answers

up vote 2 down vote accepted

Take a look at the accepted answer in the following question : How to get all android contacts but without those which are on SIM

You can also look at the following answer : Finding account nature of a contact group?

I think the links above may help you in acheiving what you want.

link|improve this answer
feedback

You may want to look at ContentProviders for the ContactsProvider.

The ContentProvider tutorial even uses Contacts as an example:

the URI for the table that matches phone numbers to people and the URI for the table that holds pictures of people (both controlled by the Contacts content provider) are:

android.provider.Contacts.Phones.CONTENT_URI
android.provider.Contacts.Photos.CONTENT_URI

Dmitri Plotnikov has some very useful things to say in this Google Group thread.

link|improve this answer
thanks for reply but i need only phone contacts and android.provider.Contacts.Phones.CONTENT_URI table give me contacts of both phone and sim and also this is depricated i want to use ContactsContract.Contacts api – Naresh Kaushik Nov 10 '10 at 10:42
feedback

You can try the foolowing code, igot the the required details.

Cursor cursor = getContentResolver().query(ContactsContract.Contacts.CONTENT_URI,null,null, null,null);
while (cursor.moveToNext()) {
    listName.add(cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME)));
    listContactId.add(cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts._ID)));
    if (Integer.parseInt(cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER))) > 0) {                
        Cursor pCur = getContentResolver().query(
        ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null,ContactsContract.CommonDataKinds.Phone.CONTACT_ID +" = "+cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts._ID)),null, null);
        while (pCur.moveToNext()) {
            listMobileNo.add(pCur.getString(pCur.getColumnIndex("DATA1")));
        } 
        pCur.close();
    } else
        listMobileNo.add("");
}               
link|improve this answer
feedback

You must add uses_permission android:name="android.permission.READ_CONTACTS then read the contacts as below:

 Cursor cursor = getContentResolver().query(ContactsContract.Contacts.CONTENT_URI, null, null, null, null);
    while (cursor.moveToNext()) {
        String name = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));

    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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