Intent 로 보내는 부분은 아래와 같이 했구요.

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

onActivityResult()에서 받는 부분은 아래와 같이 했어요.

         Uri uri = data.getData();
           if(uri != null){
            Cursor cursor = getContentResolver().query(uri, new String[]{Phone.NUMBER}, null, null, null);

            cursor.moveToFirst();
            cursor.close();
           }

그런데 저 Phone.Number에서 에러가 납니다.

메세지는 Phone.NUMBER cannot be resolved or is not a field 인데요.

어떻게 해야 될까요?