Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It is possible to do it in one query?

As far as I know content uri of sim contacts is content://icc/adn


PS. I am still learning English, however sometimes I am making stupid mistakes. I am doing my best, writing questions and answers in English, however I would be very glad if you will edit my post in case of any mistakes. I promise, your effort will not be wasted.

share|improve this question

2 Answers

up vote 7 down vote accepted

This is very easy! :)

Cursor cursor = mContentResolver.query(
   RawContacts.CONTENT_URI,
   new String[]{RawContacts._ID,RawContacts.ACCOUNT_TYPE},
   RawContacts.ACCOUNT_TYPE + " <> 'com.anddroid.contacts.sim' "
    + " AND " + RawContacts.ACCOUNT_TYPE + " <> 'com.google' " //if you don't want to google contacts also
   ,
   null,
   null);
share|improve this answer
Can you please write the code of how to get the number and name from this cursor. i hvae write the code as "while(cursor.moveToNext()){String phoneNumber = cursor.getString(cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NU‌​MBER)); String name = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME)); Log.i("all contacts",phoneNumber+"->"+name); } – Nency Aug 28 '12 at 11:24
but got the error like ": Bad request for field slot 0,-1. numRows = 46, numColumns = 2 – Nency Aug 28 '12 at 11:30

This will give you an idea how you can export contacts from Android. Though, not sure if this returns the SIM contacts or not.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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