Intent i = new Intent(Intent. ACTION_GET_CONTENT);  
    i.setType("vnd.android.cursor.item/phone_v2"); 
    startActivityForResult(i, 0);

이런 식으로 전화번호부로 가서 그 중에 하나를 클릭하면
그 전화번호만 불러오게 하고 싶은데 어찌해야 하는지도 잘 모르겠습니다.


현재 2.0이상 버젼으로 사용하고 있습니다.