I am trying to import contacts details from phonebook to my app! I can import contact details in almost all phones (Jellybean, Kitkat, Lollipop). But when i tested in Sony Experia(kitkat), the cursor contains no rows. What could be the reason? I tried lot, but couldn't solve the issue. Here is the sample code,
Cursor phones = null;
phones = context.getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, new String[]
{ ContactsContract.CommonDataKinds.Phone.NUMBER,
ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME,
ContactsContract.CommonDataKinds.Phone.PHOTO_THUMBNAIL_URI
},
ContactsContract.CommonDataKinds.Phone.NUMBER, null, null);