Uri uri = Uri.parser("content://sms/inbox");
AsyncQueryHandler.startQuery(MESSAGE_LIST_QUERY_TOKEN, null, uri,  projection, nul(selection)l, null, null);
                                                                                                                                                                
sms type의 메시지만 불러오고 싶어서 selection 파라미터에 "type=sms" 라는 조건문을 넣어줬으나 아무것도

불러오지 못합니다. 컬럼값이 type이 아니라 다른 값인 건지 아니면 selection을 저렇게 사용하면 안되는 건지 알고 싶습니다.;;

답변 부탁 드립니다.