Cursor cur =getContentResolver().query(People.CONTENT_URI, null, null, null, null);
if(cur.getCount()>0){
while (cur.moveToNext()) {
String id =cur.getString(cur.getColumnIndex(People._ID));
String name =cur.getString(cur.getColumnIndex(People.DISPLAY_NAME));
}
}