The below mentioned code is no displaying any name on Logcat
Cursor cursor = getActivity().getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
null, null, null, null);
while(cursor.moveToNext()) {
name = cursor.getString(cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME));
Log.d("name : ", ""+name);
}
cursor.close();
From the code above am trying to display contact name's on Logcat. But the while loop is not executing. Is there any mistake in my coding.
How can this be solved?
Do
cursor.moveToFirst()
inside while loop.. When u r checking forcursor.moveToNext()
the cursor will move to the next position and the data there will b null.. So u shud move the cursor to first position n then print the name.Hope this helps :)