/* 取得ContentResolver */
ContentResolver content = getContentResolver();
/* 取得通讯簿的Cursor */
contactCursor = content.query(
ContactsContract.CommonDataKinds.Phone.CONTENT_URI, PEOPLE_PROJECTION,
null
,
""
);